freebsd-dev/sbin/dhclient/Makefile
David E. O'Brien f063845519 Blah, need to add /usr/bin to the path also.
Of course this is a bug in that the dhclient script will not work properly
if one has a local / and an NFS mounted /usr and needs to obtain its IP
address via DHCP before being able to mount /usr.
2000-07-21 19:08:22 +00:00

25 lines
725 B
Makefile

# $FreeBSD$
DIST_DIR= ${.CURDIR}/../../contrib/isc-dhcp
.PATH: ${DIST_DIR}/client ${DIST_DIR}/common
PROG= dhclient
SRCS= clparse.c dhclient.c
SRCS+= alloc.c bpf.c conflex.c convert.c dispatch.c errwarn.c ethernet.c \
hash.c icmp.c inet.c inet_addr.c memory.c nit.c options.c packet.c \
parse.c print.c raw.c socket.c tables.c tree.c upf.c
CFLAGS+= -I${DIST_DIR}/includes -I${DIST_DIR}
CFLAGS+= -DCLIENT_PATH='"PATH=/sbin:/bin:/usr/sbin:/usr/bin"'
MAN5= dhclient.conf.5 dhclient.leases.5 dhcp-options.5
MAN8= dhclient.8 dhclient-script.8
beforeinstall:
${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \
${DIST_DIR}/client/scripts/freebsd \
${DESTDIR}${BINDIR}/dhclient-script
.include <bsd.prog.mk>