1 1.29 lukem # $NetBSD: Makefile,v 1.29 2002/08/19 10:16:52 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.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.29 lukem .include <bsd.own.mk> 24 1.29 lukem 25 1.1 cgd PROG= dump 26 1.13 cgd LINKS= ${BINDIR}/dump ${BINDIR}/rdump 27 1.25 perseant CPPFLAGS+=-DRDUMP -I${.CURDIR} 28 1.29 lukem CPPFLAGS+=-I${NETBSDSRCDIR}/usr.bin/who -DSUPPORT_UTMPX -DSUPPORT_UTMP 29 1.22 bouyer # CPPFLAGS+= -DDEBUG -DTDEBUG -DFDEBUG -DWRITEDEBUG -DSTATS -DDIAGNOSTICS 30 1.22 bouyer SRCS= itime.c main.c optr.c dumprmt.c rcache.c tape.c traverse.c unctime.c \ 31 1.28 christos ffs_inode.c ffs_bswap.c utmpentry.c 32 1.1 cgd BINGRP= tty 33 1.17 mrg BINMODE=2555 34 1.15 cgd MAN= dump.8 35 1.13 cgd MLINKS+=dump.8 rdump.8 36 1.19 bouyer 37 1.29 lukem .PATH: ${NETBSDSRCDIR}/sys/ufs/ffs ${NETBSDSRCDIR}/usr.bin/who 38 1.1 cgd 39 1.1 cgd .include <bsd.prog.mk> 40