Home | History | Annotate | Line # | Download | only in x_ping6
Makefile revision 1.7
      1 # $NetBSD: Makefile,v 1.7 2001/10/05 01:17:32 jmc Exp $
      2 # Build ping6 without IPSEC
      3 
      4 SRCDIR= ${.CURDIR}/../../../sbin/ping6
      5 PROG=	ping6
      6 MKMAN=	no
      7 
      8 CPPFLAGS+=-I${SRCDIR}
      9 CPPFLAGS+=-DINET6
     10 .if ${MACHINE_ARCH} != "sparc64"
     11 DBG= -Os
     12 .endif
     13 LDSTATIC?=-static
     14 
     15 # KAME scope id hack
     16 CPPFLAGS+=-DKAME_SCOPEID
     17 
     18 LDADD+=	-lm
     19 DPADD+=	${LIBM}
     20 
     21 .include <bsd.prog.mk>
     22 
     23 .PATH:  ${SRCDIR}
     24