39 lines
1.1 KiB
Plaintext
39 lines
1.1 KiB
Plaintext
*** server/Makefile.OpenBSD.orig Wed Apr 29 15:32:20 1998
|
|
--- server/Makefile.OpenBSD Wed Apr 29 15:32:20 1998
|
|
***************
|
|
*** 0 ****
|
|
--- 1,33 ----
|
|
+ OBJ = dhcps.o database.o hash.o getmac.o common_subr.o \
|
|
+ interface.o delarp.o
|
|
+ LDFLAGS = -lkvm
|
|
+ CC = gcc
|
|
+ CFLAGS = -g -Wall -I. #-DCOMPAT_RFC1541 #-DNOICMPCHK
|
|
+ #CC = cc
|
|
+ #CFLAGS = -g -I. #-DCOMPAT_RFC1541 #-DNOICMPCHK
|
|
+ SBIN = /usr/local/sbin
|
|
+ LIBEXEC = /usr/local/libexec
|
|
+ MAN = /usr/local/man
|
|
+
|
|
+ dhcps: ${OBJ}
|
|
+ ${CC} ${CFLAGS} -o dhcps ${OBJ} ${LDFLAGS}
|
|
+
|
|
+ install: dhcps
|
|
+ ${INSTALL} -m 755 -s dhcps ${SBIN}/dhcps
|
|
+ tbl dhcpdb.pool.5 >${MAN}/man5/dhcpdb.pool.5
|
|
+ gzip ${MAN}/man5/dhcpdb.pool.5
|
|
+ cp dhcpdb.relay.5 ${MAN}/man5/dhcpdb.relay.5
|
|
+ gzip ${MAN}/man5/dhcpdb.relay.5
|
|
+ cp dhcps.8 ${MAN}/man8/dhcps.8
|
|
+ gzip ${MAN}/man8/dhcps.8
|
|
+
|
|
+ clean:
|
|
+ rm -f *~ *.o *core* dhcps
|
|
+
|
|
+ dhcps.o: dhcps.c dhcp.h common.h common_subr.h hash.h dhcps.h
|
|
+ database.o: database.c dhcp.h common.h hash.h database.h
|
|
+ hash.o: hash.c hash.h
|
|
+ getmac.o: getmac.c
|
|
+ common_subr.o: common_subr.c dhcp.h common.h common_subr.h
|
|
+ interface.o: interface.c common.h
|
|
+ delarp.o: delarp.c
|