diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1998-09-15 21:43:06 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1998-09-15 21:43:06 +0000 |
commit | 83745f768cc41ebf4a408dd6b60f2e32ce2691f4 (patch) | |
tree | 9ff27db8622cec39a8a54076e498a9457a94a8da /distrib | |
parent | f518f84c22455a0a89efa373b1c273d6d3044e6f (diff) |
dhclient for the install floppy
Diffstat (limited to 'distrib')
-rw-r--r-- | distrib/special/Makefile | 4 | ||||
-rw-r--r-- | distrib/special/dhclient/Makefile | 17 |
2 files changed, 19 insertions, 2 deletions
diff --git a/distrib/special/Makefile b/distrib/special/Makefile index 06a7e975ab4..d6dfed414e3 100644 --- a/distrib/special/Makefile +++ b/distrib/special/Makefile @@ -1,5 +1,5 @@ -# $OpenBSD: Makefile,v 1.2 1997/09/21 11:46:04 deraadt Exp $ +# $OpenBSD: Makefile,v 1.3 1998/09/15 21:43:05 deraadt Exp $ -SUBDIR= ftp pppd rsh +SUBDIR= ftp pppd rsh dhclient .include <bsd.subdir.mk> diff --git a/distrib/special/dhclient/Makefile b/distrib/special/dhclient/Makefile new file mode 100644 index 00000000000..65da73e99a9 --- /dev/null +++ b/distrib/special/dhclient/Makefile @@ -0,0 +1,17 @@ +.include <bsd.own.mk> + +.PATH: ${.CURDIR}/../../../usr.sbin/dhcp/dhclient +.PATH: ${.CURDIR}/../../../usr.sbin/dhcp/common + +CPPFLAGS+= -I${.CURDIR}/../../../usr.sbin/dhcp -I${.CURDIR}/../../../usr.sbin/dhcp/includes +SRCS= dhclient.c clparse.c \ + raw.c parse.c nit.c icmp.c dispatch.c conflex.c upf.c bpf.c socket.c \ + packet.c memory.c print.c options.c inet.c convert.c sysconf.c \ + tree.c tables.c hash.c alloc.c errwarn.c inet_addr.c dns.c resolv.c +PROG= dhclient +MAN= + +LDSTATIC?= -static + +.include <bsd.prog.mk> +.include <bsd.subdir.mk> |