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