Home | History | Annotate | Line # | Download | only in dump_lfs
Makefile revision 1.10
      1 #	$NetBSD: Makefile,v 1.10 2009/02/13 16:02:05 uebayasi 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 .include <bsd.own.mk>
     10 
     11 PROG=	dump_lfs
     12 LINKS=	${BINDIR}/dump_lfs ${BINDIR}/rdump_lfs
     13 CPPFLAGS+=-DRDUMP -I${.CURDIR} -I${NETBSDSRCDIR}/sbin/dump
     14 CPPFLAGS+=-DDUMP_LFS
     15 # CPPFLAGS+= -DDEBUG -DTDEBUG -DFDEBUG -DWRITEDEBUG -DSTATS -DDIAGNOSTICS
     16 SRCS=	itime.c main.c optr.c dumprmt.c rcache.c snapshot.c tape.c \
     17 	traverse.c unctime.c ffs_bswap.c lfs_inode.c
     18 MAN=	dump_lfs.8
     19 MLINKS+=dump_lfs.8 rdump_lfs.8
     20 #CFLAGS+=-g
     21 
     22 .if ${MACHINE_ARCH} == "m68000"
     23 COPTS.lfs_inode.c+=	-fno-tree-ter
     24 .endif
     25 
     26 .PATH:  ${NETBSDSRCDIR}/sbin/dump ${NETBSDSRCDIR}/sys/ufs/lfs \
     27 	${NETBSDSRCDIR}/sys/ufs/ffs
     28 
     29 .include <bsd.prog.mk>
     30