blob: 9faa9d66f6a2b22010d1ba260a92c63c872826c4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
# $NetBSD: Makefile,v 1.3 2008/08/29 00:02:25 gmcgarry Exp $
PROG= bootptest
SRCS= bootptest.c print-bootp.c getether.c
MAN= bootptest.8
.include <bsd.prog.mk>
.if (defined(HAVE_GCC) && ${HAVE_GCC} == 4) || defined(HAVE_PCC)
COPTS.print-bootp.c+= -Wno-pointer-sign
.endif
|