cda2a9b2f0
This is not "useless", as one may have non-default setting for BINOWN in make.conf, and we still want these to be installed setuid root in this case.
22 lines
383 B
Makefile
22 lines
383 B
Makefile
# @(#)Makefile 8.1 (Berkeley) 6/5/93
|
|
# $FreeBSD$
|
|
|
|
PROG= ping
|
|
MAN= ping.8
|
|
BINOWN= root
|
|
BINMODE=4555
|
|
CFLAGS+=-Wall -Wmissing-prototypes
|
|
.if ${MACHINE_ARCH} == "alpha"
|
|
CFLAGS+=-fno-builtin # GCC's builtin memcpy doesn't do unaligned copies
|
|
.endif
|
|
DPADD= ${LIBM}
|
|
LDADD= -lm
|
|
|
|
.if !defined(RELEASE_CRUNCH)
|
|
CFLAGS+=-DIPSEC
|
|
DPADD+= ${LIBIPSEC}
|
|
LDADD+= -lipsec
|
|
.endif
|
|
|
|
.include <bsd.prog.mk>
|