1 1.26 lukem # $NetBSD: Makefile,v 1.26 2001/12/23 12:29:55 lukem Exp $ 2 1.16 cgd # @(#)Makefile 8.1 (Berkeley) 6/5/93 3 1.13 cgd 4 1.1 cgd # dump.h header file 5 1.13 cgd # itime.c reads /etc/dumpdates 6 1.13 cgd # main.c driver 7 1.13 cgd # optr.c operator interface 8 1.13 cgd # dumprmt.c handles remote tape via rmt(8) 9 1.13 cgd # tape.c handles the mag tape and opening/closing 10 1.13 cgd # traverse.c traverses the file system 11 1.1 cgd # unctime.c undo ctime 12 1.25 perseant # ffs_inode.c FFS-specific filestore routines 13 1.25 perseant # ffs_bswap.c FFS byte-swapping 14 1.1 cgd # 15 1.1 cgd # DEBUG use local directory to find ddate and dumpdates 16 1.1 cgd # TDEBUG trace out the process forking 17 1.1 cgd 18 1.1 cgd PROG= dump 19 1.13 cgd LINKS= ${BINDIR}/dump ${BINDIR}/rdump 20 1.25 perseant CPPFLAGS+=-DRDUMP -I${.CURDIR} 21 1.22 bouyer # CPPFLAGS+= -DDEBUG -DTDEBUG -DFDEBUG -DWRITEDEBUG -DSTATS -DDIAGNOSTICS 22 1.22 bouyer SRCS= itime.c main.c optr.c dumprmt.c rcache.c tape.c traverse.c unctime.c \ 23 1.25 perseant ffs_inode.c ffs_bswap.c 24 1.1 cgd BINGRP= tty 25 1.17 mrg BINMODE=2555 26 1.15 cgd MAN= dump.8 27 1.13 cgd MLINKS+=dump.8 rdump.8 28 1.19 bouyer 29 1.26 lukem .PATH: ${.CURDIR}/../../sys/ufs/ffs 30 1.1 cgd 31 1.1 cgd .include <bsd.prog.mk> 32