freebsd-dev/sbin/ping/Makefile
Doug Rabson 69beb1913e Disable gcc's builtin memcpy for alpha since it doesn't cope with unaligned
regions properly and this triggers an unaligned access trap.
1998-09-05 15:11:47 +00:00

16 lines
335 B
Makefile

# @(#)Makefile 8.1 (Berkeley) 6/5/93
# $Id: Makefile,v 1.5 1997/12/16 15:03:14 bde Exp $
PROG= ping
MAN8= ping.8
BINOWN= root
BINMODE=4555
COPTS+= -Wall -Wmissing-prototypes
.if ${MACHINE_ARCH} == "alpha"
COPTS+= -fno-builtin # GCC's builtin memcpy doesn't do unaligned copies
.endif
DPADD= ${LIBM}
LDADD= -lm
.include <bsd.prog.mk>