]> git.ipfire.org Git - thirdparty/dhcp.git/commitdiff
Adjust object file lists to support parsing DHCP client config files
authorTed Lemon <source@isc.org>
Tue, 18 Feb 1997 14:32:01 +0000 (14:32 +0000)
committerTed Lemon <source@isc.org>
Tue, 18 Feb 1997 14:32:01 +0000 (14:32 +0000)
Makefile.dist

index 8c1d61c24e8ad9e0cfdf4256a62da4178b812356..b27196cf3495238b00fda8d346b52858373c8084 100644 (file)
@@ -183,15 +183,15 @@ VARDB = /var/db
 #BINDIR = /etc
 ##--qnx--
 
-CSRC   = options.c errwarn.c convert.c \
+CSRC   = options.c errwarn.c convert.c conflex.c parse.c \
         tree.c memory.c alloc.c print.c hash.c tables.c inet.c \
         dispatch.c bpf.c packet.c raw.c nit.c socket.c route.c
-COBJ   = options.o errwarn.o convert.o \
+COBJ   = options.o errwarn.o convert.o conflex.o parse.o \
         tree.o memory.o alloc.o print.o hash.o tables.o inet.o \
         dispatch.o bpf.o packet.o raw.o nit.o socket.o route.o
 XOBJ   = dhcpxlt.o xconflex.o
-SRCS   = dhcpd.c dhcp.c bootp.c conflex.c confpars.c db.c
-OBJS   = dhcpd.o dhcp.o bootp.o conflex.o confpars.o db.o
+SRCS   = dhcpd.c dhcp.c bootp.c confpars.c db.c
+OBJS   = dhcpd.o dhcp.o bootp.o confpars.o db.o
 PROGS  = dhcpd dhclient
 MAN    = dhcpd.8 dhcpd.conf.5
 
@@ -243,8 +243,8 @@ dhcpd.conf.cat5:    dhcpd.conf.5
 dhcpd: $(OBJS) $(COBJ)
        $(CC) $(LFLAGS) -o dhcpd $(OBJS) $(COBJ) $(LIBS)
 
-dhclient:      dhclient.o $(COBJ)
-       $(CC) $(LFLAGS) -o dhclient dhclient.o $(COBJ) $(LIBS)
+dhclient:      dhclient.o clparse.o $(COBJ)
+       $(CC) $(LFLAGS) -o dhclient dhclient.o clparse.o $(COBJ) $(LIBS)
 
 dhcpxlt:       dhcpxlt.o errwarn.o convert.o tables.o inet.o xconflex.o \
                hash.o alloc.o