Makefile revision 1.4
1# $NetBSD: Makefile,v 1.4 2000/10/08 12:37:06 itojun Exp $
2# Build ping6 without IPSEC
3
4SRCDIR= ${.CURDIR}/../../../sbin/ping6
5PROG=	ping6
6NOMAN=	yes
7
8CPPFLAGS+=-I${SRCDIR}
9CPPFLAGS+=-DINET6
10COPTS+= -Os
11LDSTATIC?=-static
12
13# KAME scope id hack
14CPPFLAGS+=-DKAME_SCOPEID
15
16LDADD+=	-lm
17DPADD+=	${LIBM}
18
19.include <bsd.prog.mk>
20
21.PATH:  ${SRCDIR}
22