ofono/include/Makefile.am

21 lines
477 B
Makefile
Raw Normal View History

2009-04-26 19:12:32 +00:00
includedir = @includedir@/ofono
2009-06-17 12:03:21 +00:00
include_HEADERS = log.h plugin.h history.h
2009-04-26 19:28:48 +00:00
nodist_include_HEADERS = version.h
2009-04-26 19:12:32 +00:00
MAINTAINERCLEANFILES = Makefile.in
2009-04-26 19:12:32 +00:00
all-local:
@if [ ! -e ofono ]; then \
mkdir ofono; \
list='$(include_HEADERS)'; for i in $$list; \
do $(LN_S) $(abs_top_srcdir)/include/$$i ofono/$$i; done; \
2009-04-26 19:28:48 +00:00
list='$(nodist_include_HEADERS)'; for i in $$list; \
do $(LN_S) $(abs_top_builddir)/include/$$i ofono/$$i; done; \
2009-04-26 19:12:32 +00:00
fi
clean-local:
@rm -rf ofono