ofono/include/Makefile.am

25 lines
668 B
Makefile
Raw Normal View History

2009-04-26 19:12:32 +00:00
includedir = @includedir@/ofono
include_HEADERS = log.h plugin.h history.h dbus.h modem.h \
2009-08-13 17:58:54 +00:00
types.h call-barring.h call-forwarding.h \
call-meter.h call-settings.h phonebook.h \
2009-08-19 17:10:38 +00:00
ssn.h ussd.h sms.h sim.h message-waiting.h \
netreg.h voicecall.h devinfo.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