1 # $NetBSD: Makefile,v 1.8 2013/11/09 21:39:27 christos Exp $ 2 # Build ping without IPSEC 3 4 .include <bsd.own.mk> 5 6 SRCDIR= ${.CURDIR}/../../../sbin/ping 7 8 PROG= ping 9 NOMAN= # defined 10 11 CPPFLAGS+= -I${SRCDIR} -DCRUNCHOPS 12 DPADD= ${LIBM} 13 LDADD= -lm 14 15 .if ${MACHINE_ARCH} == "vax" 16 COPTS.ping.c=-O0 17 .endif 18 19 .include <bsd.prog.mk> 20 21 .PATH: ${SRCDIR} 22