Home | History | Annotate | Line # | Download | only in dump
Makefile revision 1.33.24.1
      1  1.33.24.1  wrstuden #	$NetBSD: Makefile,v 1.33.24.1 2008/09/18 04:28:22 wrstuden 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.22    bouyer # CPPFLAGS+= -DDEBUG -DTDEBUG -DFDEBUG -DWRITEDEBUG -DSTATS -DDIAGNOSTICS
     29       1.32   hannken SRCS=	itime.c main.c optr.c dumprmt.c rcache.c snapshot.c tape.c \
     30       1.32   hannken 	traverse.c unctime.c ffs_inode.c ffs_bswap.c
     31       1.15       cgd MAN=	dump.8
     32       1.13       cgd MLINKS+=dump.8 rdump.8
     33       1.19    bouyer 
     34       1.30     lukem .PATH:  ${NETBSDSRCDIR}/sys/ufs/ffs
     35       1.31      fvdl 
     36  1.33.24.1  wrstuden .if (defined(HAVE_GCC) && ${HAVE_GCC} == 4) || defined(HAVE_PCC)
     37       1.33       mrg COPTS.ffs_inode.c+=	-Wno-pointer-sign
     38       1.33       mrg .endif
     39       1.33       mrg 
     40        1.1       cgd .include <bsd.prog.mk>
     41