1 # $NetBSD: Makefile,v 1.12 2011/06/22 02:49:43 mrg Exp $ 2 # @(#)Makefile 8.1 (Berkeley) 6/5/93 3 4 # lfs_inode.c LFS filestore-specific routines 5 # 6 # DEBUG use local directory to find ddate and dumpdates 7 # TDEBUG trace out the process forking 8 9 WARNS?= 3 # XXX: sign-compare issues 10 11 .include <bsd.own.mk> 12 13 PROG= dump_lfs 14 LINKS= ${BINDIR}/dump_lfs ${BINDIR}/rdump_lfs 15 CPPFLAGS+=-DRDUMP -I${.CURDIR} -I${NETBSDSRCDIR}/sbin/dump 16 CPPFLAGS+=-DDUMP_LFS 17 # CPPFLAGS+= -DDEBUG -DTDEBUG -DFDEBUG -DWRITEDEBUG -DSTATS -DDIAGNOSTICS 18 SRCS= itime.c main.c optr.c dumprmt.c rcache.c snapshot.c tape.c \ 19 traverse.c unctime.c ffs_bswap.c lfs_inode.c 20 MAN= dump_lfs.8 21 MLINKS+=dump_lfs.8 rdump_lfs.8 22 #CFLAGS+=-g 23 24 .if ${MACHINE_ARCH} == "m68000" 25 COPTS.lfs_inode.c+= -fno-tree-ter 26 .endif 27 28 .PATH: ${NETBSDSRCDIR}/sbin/dump ${NETBSDSRCDIR}/sys/ufs/lfs \ 29 ${NETBSDSRCDIR}/sys/ufs/ffs 30 31 .include <bsd.prog.mk> 32 33 # XXX 34 .if ${HAVE_GCC} == 45 35 COPTS.lfs_inode.c+= -fno-strict-aliasing 36 .endif 37