aboutsummaryrefslogtreecommitdiff
path: root/sbin/dhclient/client
diff options
context:
space:
mode:
authorMurray Stokely <murray@FreeBSD.org>2002-02-19 12:57:18 +0000
committerMurray Stokely <murray@FreeBSD.org>2002-02-19 12:57:18 +0000
commit0829ba2c7793a1593caa4659bf3c8f0499f9b524 (patch)
treee3e13797bea07b4b249642874f917fc0b7c21411 /sbin/dhclient/client
parenta2f98fcc9e67e1792e93ddbbe05e99d4fb3c7c02 (diff)
Notes
Diffstat (limited to 'sbin/dhclient/client')
-rw-r--r--sbin/dhclient/client/Makefile23
1 files changed, 23 insertions, 0 deletions
diff --git a/sbin/dhclient/client/Makefile b/sbin/dhclient/client/Makefile
new file mode 100644
index 000000000000..37d8b3db71f6
--- /dev/null
+++ b/sbin/dhclient/client/Makefile
@@ -0,0 +1,23 @@
+# client
+# $FreeBSD$
+
+DIST_DIR= ${.CURDIR}/../../../contrib/isc-dhcp
+
+.PATH: ${DIST_DIR}/client
+
+PROG= dhclient
+SRCS= clparse.c dhclient.c
+
+CFLAGS+= -I${DIST_DIR}/includes -I${DIST_DIR}
+CFLAGS+= -DCLIENT_PATH='"PATH=/sbin:/bin:/usr/sbin:/usr/bin"' -Dwarn=dhcp_warn
+
+DPADD= ${LIBDHCP} ${LIBRES} ${LIBOMAPI} ${LIBDST}
+LDADD= ${LIBDHCP} ${LIBRES} ${LIBOMAPI} ${LIBDST}
+
+SCRIPTS= scripts/freebsd
+SCRIPTSNAME= dhclient-script
+
+MAN= dhclient.conf.5 dhclient.leases.5
+MAN+= dhclient.8 dhclient-script.8
+
+.include <bsd.prog.mk>