mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-16 15:44:04 +01:00
bmake framework for ISC-DHCP client
This commit is contained in:
parent
836b9b6243
commit
914345e310
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/vendor/OpenBSD/dist/; revision=43855
30
sbin/dhclient/Makefile
Normal file
30
sbin/dhclient/Makefile
Normal file
@ -0,0 +1,30 @@
|
||||
# ex:ts=8
|
||||
#
|
||||
# @(#)Makefile 1.0 (obrien) 2/6/99
|
||||
# $Id$
|
||||
#
|
||||
# Copyright (c) 1999 by David O'Brien
|
||||
# This file is under a "FreeBSD" copyright. See /usr/src/sys/sys/copyright.h
|
||||
# for the terms of the copyright.
|
||||
#
|
||||
|
||||
.PATH: ${.CURDIR}/../../contrib/isc-dhcp/client ${.CURDIR}/../../contrib/isc-dhcp/common
|
||||
|
||||
PROG= dhclient
|
||||
MAN5= dhclient.conf.5 dhclient.leases.5 dhcp-options.5
|
||||
MAN8= dhclient.8 dhclient-script.8
|
||||
|
||||
SRCS= dhclient.c clparse.c
|
||||
SRCS+= raw.c parse.c nit.c icmp.c dispatch.c conflex.c upf.c bpf.c \
|
||||
socket.c packet.c memory.c print.c options.c inet.c convert.c \
|
||||
tree.c tables.c hash.c alloc.c errwarn.c inet_addr.c
|
||||
|
||||
CFLAGS+= -I${.CURDIR}/../../contrib/isc-dhcp/includes \
|
||||
-I${.CURDIR}/../../contrib/isc-dhcp
|
||||
|
||||
afterinstall:
|
||||
${INSTALL} ${COPY} -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \
|
||||
${.CURDIR}/../../contrib/isc-dhcp/client/scripts/freebsd \
|
||||
${BINDIR}/dhclient-script
|
||||
|
||||
.include <bsd.prog.mk>
|
Loading…
Reference in New Issue
Block a user