2c1cfc8e8c
make -V FILES from being useful (and given that every other variable can be extracted using make -V, the behaviour was unusually inconsistent given that the original reason for clearing it doesn't seem to be relevant anymore) - use <bsd.prog.mk> instead of directly including <bsd.files.mk> (and possibly <bsd.man.mk> or <bsd.own.mk>) - remove obsolete NOPROG
19 lines
390 B
Makefile
19 lines
390 B
Makefile
# $NetBSD: Makefile,v 1.13 2002/04/24 08:18:54 lukem Exp $
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
SRCS = dhcpd.c dhcp.c bootp.c confpars.c db.c class.c failover.c \
|
|
omapi.c mdb.c stables.c salloc.c ddns.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>
|