Remove obsolete file.
[connman] / include / Makefile.am
1
2 includedir = @includedir@/connman
3
4 include_HEADERS = types.h log.h plugin.h security.h notifier.h \
5                                 storage.h device.h network.h inet.h
6
7 nodist_include_HEADERS = version.h
8
9 noinst_HEADERS = driver.h element.h property.h ipv4.h rtnl.h dbus.h \
10                         rfkill.h resolver.h ipconfig.h service.h option.h
11
12 abs_top_srcdir=$(shell pwd)/..
13 abs_top_builddir=$(shell pwd)/..
14
15 MAINTAINERCLEANFILES = Makefile.in
16
17 all-local:
18         @if [ ! -e connman ]; then \
19           mkdir connman; \
20           list='$(include_HEADERS) $(noinst_HEADERS)'; for i in $$list; \
21             do $(LN_S) $(abs_top_srcdir)/include/$$i connman/$$i; done; \
22           list='$(nodist_include_HEADERS)'; for i in $$list; \
23             do $(LN_S) $(abs_top_builddir)/include/$$i connman/$$i; done; \
24         fi
25
26 clean-local:
27         @rm -rf connman