blob: d8c082810128f6834563ec1da69e3490f56d8e6a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# bootptest/Makefile
# Makefile,v 1.2 1994/09/10 15:00:08 csgr Exp
PROG= bootptest
SRCDIR= ${.CURDIR}/../bootpd
CFLAGS+= -I${SRCDIR}
.PATH: ${SRCDIR}
MANSRC= ${SRCDIR}
SRCS= bootptest.c print-bootp.c getif.c getether.c report.c
MAN8= bootptest.8
.include <bsd.prog.mk>
|