Makefile revision 43855
1# ex:ts=8
2#
3# @(#)Makefile	1.0 (obrien) 2/6/99
4# $Id$
5#
6# Copyright (c) 1999 by David O'Brien
7# This file is under a "FreeBSD" copyright.  See /usr/src/sys/sys/copyright.h
8# for the terms of the copyright.
9#
10
11.PATH:		${.CURDIR}/../../contrib/isc-dhcp/client ${.CURDIR}/../../contrib/isc-dhcp/common
12
13PROG=		dhclient
14MAN5=		dhclient.conf.5 dhclient.leases.5 dhcp-options.5
15MAN8=		dhclient.8 dhclient-script.8
16
17SRCS=		dhclient.c clparse.c
18SRCS+=		raw.c parse.c nit.c icmp.c dispatch.c conflex.c upf.c bpf.c \
19		socket.c packet.c memory.c print.c options.c inet.c convert.c \
20		tree.c tables.c hash.c alloc.c errwarn.c inet_addr.c
21
22CFLAGS+= 	-I${.CURDIR}/../../contrib/isc-dhcp/includes \
23		-I${.CURDIR}/../../contrib/isc-dhcp
24
25afterinstall:
26	${INSTALL} ${COPY} -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \
27		${.CURDIR}/../../contrib/isc-dhcp/client/scripts/freebsd \
28		${BINDIR}/dhclient-script
29
30.include <bsd.prog.mk>
31