1# $OpenBSD: Makefile,v 1.12 2005/07/17 19:33:55 krw Exp $
2#
3# Copyright (c) 1996, 1997 The Internet Software Consortium.
4# All rights reserved.
5#
6# Redistribution and use in source and binary forms, with or without
7# modification, are permitted provided that the following conditions
8# are met:
9#
10# 1. Redistributions of source code must retain the above copyright
11#    notice, this list of conditions and the following disclaimer.
12# 2. Redistributions in binary form must reproduce the above copyright
13#    notice, this list of conditions and the following disclaimer in the
14#    documentation and/or other materials provided with the distribution.
15# 3. Neither the name of The Internet Software Consortium nor the names of its
16#    contributors may be used to endorse or promote products derived
17#    from this software without specific prior written permission.
18#
19# THIS SOFTWARE IS PROVIDED BY THE INTERNET SOFTWARE CONSORTIUM AND
20# CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING,
21# BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
22# FOR A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL
23# THE INTERNET SOFTWARE CONSORTIUM OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
24# INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
25# (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
26# SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
28# STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
29# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
30# OF THE POSSIBILITY OF SUCH DAMAGE.
31#
32
33.include <bsd.own.mk>
34
35SRCS=	dhclient.c clparse.c dispatch.c bpf.c options.c \
36	conflex.c errwarn.c inet.c packet.c convert.c tables.c \
37	parse.c privsep.c
38
39PROG=	dhclient
40MAN=	dhclient.8 dhclient.conf.5 dhclient.leases.5 dhclient-script.8
41
42CFLAGS+=-Wall
43
44beforeinstall:
45	${INSTALL} ${INSTALL_COPY} -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \
46	    ${.CURDIR}/dhclient-script ${DESTDIR}/sbin/dhclient-script
47
48.include <bsd.prog.mk>
49