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