blob: cd80852feabd21ee986a4d321234ea97606abccb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# $NetBSD: Makefile,v 1.1 2013/03/24 15:54:30 christos Exp $
.include <bsd.own.mk>
SRCS = dhcpd.c dhcp.c dhcpv6.c bootp.c confpars.c db.c class.c failover.c \
omapi.c mdb.c mdb6.c stables.c salloc.c ddns.c dhcpleasequery.c
PROG = dhcpd
MAN = dhcpd.8 dhcpd.conf.5 dhcpd.leases.5
DHCPSRCDIR= server
.if ${MKSHARE} != "no"
FILESDIR= /usr/share/examples/dhcp
FILES= dhcpd.conf
.endif
.include <bsd.prog.mk>
|