blob: cfa1590f79f255b01f5070e001f2cd7da07f2fa5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# $OpenBSD: Makefile,v 1.10 2009/10/28 07:36:49 deraadt Exp $
.include <bsd.own.mk>
.PATH: ${.CURDIR}/../../../sbin/dhclient
CLIENT_PATH='"PATH=/usr/bin:/usr/sbin:/bin:/sbin"'
CPPFLAGS+= -I${.CURDIR}/../../../sbin/dhclient
SRCS= dhclient.c clparse.c dispatch.c bpf.c options.c \
conflex.c errwarn.c inet.c packet.c convert.c tables.c parse.c \
privsep.c
PROG= dhclient
.include <bsd.prog.mk>
.include <bsd.subdir.mk>
|