blob: 9ff96713ab49c93533f20c1e446c2ff58e8368ca (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# bootpef/Makefile
# $Id: Makefile,v 1.3 1994/12/22 11:33:12 cgd Exp $
PROG= bootpef
SRCDIR= ${.CURDIR}/../bootpd
CFLAGS+= -DETC_ETHERS -DDEBUG -I${SRCDIR}
.PATH: ${SRCDIR}
SRCS= bootpef.c dovend.c readfile.c hash.c dumptab.c \
lookup.c hwaddr.c report.c tzone.c
MAN= bootpef.8
.include <bsd.prog.mk>
|