summaryrefslogtreecommitdiffstats
path: root/include/Makefile.am
blob: bc44606a2dbb222d998b67b7d5fc4206152d094c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
includedir = @includedir@/ofono

include_HEADERS = log.h plugin.h history.h dbus.h modem.h \
			types.h call-barring.h call-forwarding.h \
			call-meter.h call-settings.h phonebook.h \
			ssn.h ussd.h sms.h sim.h message-waiting.h \
			netreg.h voicecall.h devinfo.h

nodist_include_HEADERS = version.h

MAINTAINERCLEANFILES = Makefile.in

all-local:
	@test -d ofono || mkdir ofono
	@list='$(include_HEADERS)'; for i in $$list; do \
	    test -f ofono/$$i || \
	    $(LN_S) $(abs_top_srcdir)/include/$$i ofono/$$i; \
	done
	@list='$(nodist_include_HEADERS)'; for i in $$list; do \
	    test -f ofono/$$i || \
	    $(LN_S) $(abs_top_builddir)/include/$$i ofono/$$i; \
	done

clean-local:
	@rm -rf ofono