blob: a155e0e4f7c32d773f272084319ea51186562add (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
# Makefile
# $Id$
PROG= bootpgw
NOMAN= true
SRCS= bootpgw.c getif.c hwaddr.c report.c rtmsg.c
SRCDIR= ${.CURDIR}/../bootpd
CFLAGS+=-I${SRCDIR}
.PATH: ${SRCDIR}
.include <bsd.prog.mk>
|