[dhcp-agent-commits] dhcp-agent/src Makefile.am,1.25,1.26
Status: Alpha
Brought to you by:
actmodern
From: <act...@us...> - 2003-07-02 15:24:11
|
Update of /cvsroot/dhcp-agent/dhcp-agent/src In directory sc8-pr-cvs1:/tmp/cvs-serv9182 Modified Files: Makefile.am Log Message: added initial server code Index: Makefile.am =================================================================== RCS file: /cvsroot/dhcp-agent/dhcp-agent/src/Makefile.am,v retrieving revision 1.25 retrieving revision 1.26 diff -C2 -d -r1.25 -r1.26 *** Makefile.am 25 Jun 2003 01:53:36 -0000 1.25 --- Makefile.am 2 Jul 2003 15:24:02 -0000 1.26 *************** *** 6,14 **** INCLUDES = ${PCAP_INC} ${DNET_INC} ${GUILE_INC} CPPFLAGS = -DDHCPSYSCONFDIR=\"${dhcpsysconfdir}\" -DDHCPSYSCONF_CLIENTDIR=\"${dhcpsysconf_clientdir}\" \ ! -DDHCPLOCALSTATEDIR=\"${dhcplocalstatedir}\" -DDHCPLOCALSTATE_CLIENTDIR=\"${dhcplocalstate_clientdir}\" AUTOMAKE_OPTIONS = foreign # Programs we are compiling. ! sbin_PROGRAMS = dhcp-sniff dhcp-client lib_LTLIBRARIES = libdhcputil.la --- 6,17 ---- INCLUDES = ${PCAP_INC} ${DNET_INC} ${GUILE_INC} CPPFLAGS = -DDHCPSYSCONFDIR=\"${dhcpsysconfdir}\" -DDHCPSYSCONF_CLIENTDIR=\"${dhcpsysconf_clientdir}\" \ ! -DDHCPSYSCONF_SERVERDIR=\"${dhcpsysconf_clientdir}\" \ ! -DDHCPLOCALSTATEDIR=\"${dhcplocalstatedir}\" -DDHCPLOCALSTATE_CLIENTDIR=\"${dhcplocalstate_clientdir}\" \ ! -DDHCPLOCALSTATE_SERVERDIR=\"${dhcplocalstate_clientdir}\" ! AUTOMAKE_OPTIONS = foreign # Programs we are compiling. ! sbin_PROGRAMS = dhcp-sniff dhcp-client dhcp-server lib_LTLIBRARIES = libdhcputil.la *************** *** 18,23 **** dhcp-client-conf.h dhcp-librawnet.h dhcp-limits.h dhcp-log.h dhcp-tokenizer.h \ dhcp-sysconf.h dhcp-conf.h dhcp-conf-var.h dhcp-option.h dhcp-option-convert.h \ ! dhcp-client-guile.h dhcp-sniff-defaults.h dhcp-client-defaults.h ! libdhcputil_la_SOURCES = dhcp-util.c \ --- 21,26 ---- dhcp-client-conf.h dhcp-librawnet.h dhcp-limits.h dhcp-log.h dhcp-tokenizer.h \ dhcp-sysconf.h dhcp-conf.h dhcp-conf-var.h dhcp-option.h dhcp-option-convert.h \ ! dhcp-client-guile.h dhcp-sniff-defaults.h dhcp-client-defaults.h dhcp-lease.h \ ! dhcp-server.h dhcp-server-guile.h libdhcputil_la_SOURCES = dhcp-util.c \ *************** *** 65,70 **** --- 68,77 ---- dhcp-client-guile.c + dhcp_server_SOURCES = dhcp-server.c \ + dhcp-lease.c + dhcp_client_LDADD = -ldhcputil ${GUILE_LIB} dhcp_sniff_LDADD = -ldhcputil + dhcp_server_LDADD = -ldhcputil ${GUILE_LIB} libdhcputil_la_LIBADD = ${PCAP_LIB} ${DNET_LIB} |