1 # 2 # automake adds dependencies that we don't like, so we explicitly remove them 3 # 4 Makefile: 5 6 # 7 # for libtool 8 # 9 ACLOCAL_AMFLAGS = -I m4 10 11 # 12 # We have a lot of files that we want shipped with the distribution. 13 # 14 EXTRA_DIST = RELNOTES LICENSE configure.ac+lt config+lt \ 15 contrib/3.0b1-lease-convert contrib/dhclient-tz-exithook.sh \ 16 contrib/dhcp.spec contrib/sethostname.sh contrib/solaris.init \ 17 contrib/ms2isc/Registry.pm contrib/ms2isc/ms2isc.pl \ 18 contrib/ms2isc/readme.txt contrib/ldap/dhcpd-conf-to-ldap \ 19 contrib/ldap/dhcp.schema contrib/ldap/README.ldap \ 20 contrib/dhcp-lease-list.pl \ 21 doc/BIND-libraries doc/DHCPv4-over-DHCPv6 \ 22 doc/IANA-arp-parameters doc/Makefile doc/References.html \ 23 doc/References.txt doc/References.xml doc/api+protocol \ 24 doc/ja_JP.eucJP/dhclient-script.8 doc/ja_JP.eucJP/dhclient.8 \ 25 doc/ja_JP.eucJP/dhclient.conf.5 doc/ja_JP.eucJP/dhclient.leases.5 \ 26 doc/ja_JP.eucJP/dhcp-eval.5 doc/ja_JP.eucJP/dhcp-options.5 \ 27 doc/examples/dhclient-dhcpv6.conf doc/examples/dhcpd-dhcpv6.conf \ 28 doc/devel/arch.dox doc/devel/atf.dox doc/devel/contrib.dox \ 29 doc/devel/debug.dox doc/devel/isc-logo.jpg doc/devel/libtool.dox \ 30 doc/devel/mainpage.dox doc/devel/omapi.dox doc/devel/qa.dox \ 31 client/tests/Atffile common/tests/Atffile server/tests/Atffile \ 32 client/tests/Kyuafile common/tests/Kyuafile server/tests/Kyuafile \ 33 m4/README CONTRIBUTING.md 34 35 if HAVE_BINDDIR 36 EXTRA_DIST += bind/Makefile.in bind/bind.tar.gz bind/version.tmp 37 endif 38 39 # Use an autoconf substitution vs an automake conditional here 40 # to fool automake when the bind directory does not exist. 41 SUBDIRS = @BINDSUBDIR@ includes tests common omapip client dhcpctl relay server 42 43 DIST_SUBDIRS = $(SUBDIRS) keama 44 45 nobase_include_HEADERS = dhcpctl/dhcpctl.h 46 47 # 48 # distcheck tuning 49 # 50 51 DISTCHECK_CONFIGURE_FLAGS = @DISTCHECK_ATF_CONFIGURE_FLAG@ 52 DISTCHECK_CONFIGURE_FLAGS += @DISTCHECK_LIBBIND_CONFIGURE_FLAG@ 53 DISTCHECK_CONFIGURE_FLAGS += @DISTCHECK_LIBTOOL_CONFIGURE_FLAG@ 54 55 distcheck-hook: 56 if HAVE_BINDDIR 57 chmod u+w $(distdir)/bind 58 endif 59 60 distclean-local: 61 rm -f config.report 62