mirror of
https://gitlab.isc.org/isc-projects/dhcp
synced 2025-08-29 05:17:57 +00:00
Update the auto genrated files to add the required bind9 libraries Fix up dhcpctl/Makefile.am to include the isccfg lib Patch for 30461 to allow the DHCP server to find the name server to update via the DNS Conflicts:
18 lines
605 B
Makefile
18 lines
605 B
Makefile
bin_PROGRAMS = omshell
|
|
lib_LIBRARIES = libdhcpctl.a
|
|
noinst_PROGRAMS = cltest
|
|
man_MANS = omshell.1 dhcpctl.3
|
|
EXTRA_DIST = $(man_MANS)
|
|
|
|
omshell_SOURCES = omshell.c
|
|
omshell_LDADD = libdhcpctl.a ../common/libdhcp.a ../omapip/libomapi.a \
|
|
../bind/lib/libirs.a ../bind/lib/libdns.a \
|
|
../bind/lib/libisccfg.a ../bind/lib/libisc.a
|
|
|
|
libdhcpctl_a_SOURCES = dhcpctl.c callback.c remote.c
|
|
|
|
cltest_SOURCES = cltest.c
|
|
cltest_LDADD = libdhcpctl.a ../common/libdhcp.a ../omapip/libomapi.a \
|
|
../bind/lib/libirs.a ../bind/lib/libdns.a \
|
|
../bind/lib/libisccfg.a ../bind/lib/libisc.a
|