blob: c74e2008ddff449f176f1508a95d64ff1823014c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# bootptest/Makefile
# $Id: Makefile,v 1.1 1995/10/18 08:47:28 deraadt Exp $
PROG= bootptest
SRCDIR= ${.CURDIR}/../bootpd
CFLAGS+= -I${SRCDIR}
.PATH: ${SRCDIR}
SRCS= bootptest.c print-bootp.c getif.c getether.c report.c
MAN= bootptest.8
.include <bsd.prog.mk>
|