diff options
author | David Hankins <dhankins@isc.org> | 2007-05-19 18:47:15 +0000 |
---|---|---|
committer | David Hankins <dhankins@isc.org> | 2007-05-19 18:47:15 +0000 |
commit | fe5b0fdd70907a228c996a0d9a2857bc90a67e6f (patch) | |
tree | 98fca773de13ea25b36a8354547aff15b4070b52 /server/Makefile.am | |
parent | 786b09305811b4f210e695961aaf3785a5d0d72d (diff) | |
download | isc-dhcp-fe5b0fdd70907a228c996a0d9a2857bc90a67e6f.tar.gz |
- Replaced ./configure shellscripting with GNU Autoconf. [ISC-Bugs #16405b]
- RELNOTES/README++
- s/wether/whether/ in dhcp-options.5 manpage edits.
Diffstat (limited to 'server/Makefile.am')
-rw-r--r-- | server/Makefile.am | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/server/Makefile.am b/server/Makefile.am new file mode 100644 index 00000000..9eaff555 --- /dev/null +++ b/server/Makefile.am @@ -0,0 +1,15 @@ +AM_CPPFLAGS = -I.. -DLOCALSTATEDIR='"@localstatedir@"' + +sysconf_DATA = dhcpd.conf +sbin_PROGRAMS = dhcpd +dhcpd_SOURCES = dhcpd.c dhcp.c bootp.c confpars.c db.c class.c failover.c \ + omapi.c mdb.c stables.c salloc.c ddns.c dhcpleasequery.c \ + dhcpv6.c mdb6.c + +# libomapi.a this is here twice to handle circular library dependencies :( +dhcpd_LDADD = ../common/libdhcp.a ../omapip/libomapi.a ../dst/libdst.a \ + ../dhcpctl/libdhcpctl.a ../minires/libres.a \ + ../omapip/libomapi.a + +man_MANS = dhcpd.8 dhcpd.conf.5 dhcpd.leases.5 + |