NetBSD/usr.sbin/rbootd/Makefile
joerg 9edf9a0457 Remove many HAVE_GCC || HAVE_PCC conditionals as the options also apply
to Clang. Add a few cases of HAVE_LLVM for -fno-strict-aliasing.
2012-08-10 12:10:27 +00:00

20 lines
393 B
Makefile

# from: @(#)Makefile 8.1 (Berkeley) 6/4/93
# $NetBSD: Makefile,v 1.14 2012/08/10 12:10:29 joerg Exp $
USE_FORT?= yes # network server
PROG= rbootd
SRCS= bpf.c conf.c parseconf.c rbootd.c rmpproto.c utils.c
MAN= rbootd.8
LDADD+= -lutil
DPADD+= ${LIBUTIL}
.include <bsd.own.mk>
.if defined(HAVE_GCC) || defined(HAVE_LLVM)
COPTS.utils.c+= -fno-strict-aliasing
.endif
.include <bsd.prog.mk>