23 lines
640 B
Makefile
23 lines
640 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"' -Dwarn=dhcp_warn
|
|
|
|
SCRIPTS= scripts/freebsd
|
|
SCRIPTSNAME= dhclient-script
|
|
|
|
MAN= dhclient.conf.5 dhclient.leases.5 dhcp-options.5
|
|
MAN+= dhclient.8 dhclient-script.8
|
|
|
|
.include <bsd.prog.mk>
|