]> CyberLeo.Net >> Repos - FreeBSD/stable/10.git/blob - sbin/ping/Makefile
Copy head (r256279) to stable/10 as part of the 10.0-RELEASE cycle.
[FreeBSD/stable/10.git] / sbin / ping / Makefile
1 #       @(#)Makefile    8.1 (Berkeley) 6/5/93
2 # $FreeBSD$
3
4 PROG=   ping
5 MAN=    ping.8
6 BINOWN= root
7 BINMODE=4555
8 WARNS?= 2
9 DPADD=  ${LIBM}
10 LDADD=  -lm
11
12 .if !defined(RELEASE_CRUNCH)
13 CFLAGS+=-DIPSEC
14 DPADD+= ${LIBIPSEC}
15 LDADD+= -lipsec
16 .endif
17
18 .include <bsd.prog.mk>