1 1.28 christos # $NetBSD: Makefile,v 1.28 2002/08/02 02:07:09 christos 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.27 lukem # rcache.c read cache 10 1.13 cgd # tape.c handles the mag tape and opening/closing 11 1.13 cgd # traverse.c traverses the file system 12 1.1 cgd # unctime.c undo ctime 13 1.25 perseant # ffs_inode.c FFS-specific filestore routines 14 1.25 perseant # ffs_bswap.c FFS byte-swapping 15 1.1 cgd # 16 1.1 cgd # DEBUG use local directory to find ddate and dumpdates 17 1.1 cgd # TDEBUG trace out the process forking 18 1.27 lukem # FDEBUG trace dumpdates parsing 19 1.27 lukem # WRITEDEBUG trace slave writes 20 1.27 lukem # STATS read cache statistics 21 1.27 lukem # DIAGNOSTICS read cache diagnostic checks 22 1.1 cgd 23 1.1 cgd PROG= dump 24 1.13 cgd LINKS= ${BINDIR}/dump ${BINDIR}/rdump 25 1.25 perseant CPPFLAGS+=-DRDUMP -I${.CURDIR} 26 1.28 christos CPPFLAGS+=-I${.CURDIR}/../../usr.bin/who -DSUPPORT_UTMPX -DSUPPORT_UTMP 27 1.22 bouyer # CPPFLAGS+= -DDEBUG -DTDEBUG -DFDEBUG -DWRITEDEBUG -DSTATS -DDIAGNOSTICS 28 1.22 bouyer SRCS= itime.c main.c optr.c dumprmt.c rcache.c tape.c traverse.c unctime.c \ 29 1.28 christos ffs_inode.c ffs_bswap.c utmpentry.c 30 1.1 cgd BINGRP= tty 31 1.17 mrg BINMODE=2555 32 1.15 cgd MAN= dump.8 33 1.13 cgd MLINKS+=dump.8 rdump.8 34 1.19 bouyer 35 1.28 christos .PATH: ${.CURDIR}/../../sys/ufs/ffs ${.CURDIR}/../../usr.bin/who 36 1.1 cgd 37 1.1 cgd .include <bsd.prog.mk> 38