6be406e820
the compiler output and is therefore ipso facto not necessary. I'll leave it on for HAVE_LLVM as I can't check that tonight. (If there is invalid code in here that actually requires it, let me know so I can fix things properly.)
18 lines
339 B
Makefile
18 lines
339 B
Makefile
# $NetBSD: Makefile,v 1.16 2013/08/11 03:49:24 dholland Exp $
|
|
# @(#)Makefile 8.1 (Berkeley) 6/18/93
|
|
|
|
WARNS?= 3 # XXX -Wsign-compare
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
PROG= dumplfs
|
|
SRCS= dumplfs.c lfs_cksum.c misc.c
|
|
.PATH: ${NETBSDSRCDIR}/sys/ufs/lfs
|
|
MAN= dumplfs.8
|
|
|
|
.if defined(HAVE_LLVM)
|
|
COPTS+= -fno-strict-aliasing
|
|
.endif
|
|
|
|
.include <bsd.prog.mk>
|