1 # $NetBSD: Makefile,v 1.1 1999/09/29 04:57:49 perseant 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 PROG= dump_lfs 10 LINKS= ${BINDIR}/dump_lfs ${BINDIR}/rdump_lfs 11 CPPFLAGS+=-DRDUMP -I${.CURDIR} -I${.CURDIR}/../dump 12 # CPPFLAGS+= -DDEBUG -DTDEBUG -DFDEBUG -DWRITEDEBUG -DSTATS -DDIAGNOSTICS 13 SRCS= itime.c main.c optr.c dumprmt.c rcache.c tape.c traverse.c unctime.c \ 14 ffs_bswap.c lfs_inode.c 15 BINGRP= tty 16 BINMODE=2555 17 MAN= dump_lfs.8 18 MLINKS+=dump_lfs.8 rdump_lfs.8 19 CFLAGS+=-g 20 21 .PATH: ${.CURDIR}/../dump ${.CURDIR}/../../sys/ufs/lfs ${.CURDIR}/../../sys/ufs/ffs 22 23 .include <bsd.prog.mk> 24