summaryrefslogtreecommitdiffstats
path: root/include/Makefile.am
blob: 368c5c7d5d85d4ca13ce596eca2d504c3e489bc8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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

nodist_include_HEADERS = version.h

MAINTAINERCLEANFILES = Makefile.in

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; \
	  list='$(nodist_include_HEADERS)'; for i in $$list; \
	    do $(LN_S) $(abs_top_builddir)/include/$$i ofono/$$i; done; \
	fi

clean-local:
	@rm -rf ofono