Makefile revision 1.15
1# $NetBSD: Makefile,v 1.15 2012/08/10 12:10:28 joerg Exp $ 2# @(#)Makefile 8.1 (Berkeley) 6/18/93 3 4WARNS?= 3 # XXX -Wsign-compare 5 6.include <bsd.own.mk> 7 8PROG= dumplfs 9SRCS= dumplfs.c lfs_cksum.c misc.c 10.PATH: ${NETBSDSRCDIR}/sys/ufs/lfs 11MAN= dumplfs.8 12 13.if defined(HAVE_GCC) || defined(HAVE_LLVM) 14COPTS+= -fno-strict-aliasing 15.endif 16 17.include <bsd.prog.mk> 18