Home | History | Annotate | Line # | Download | only in dump_lfs
Makefile revision 1.12
      1  1.12       mrg #	$NetBSD: Makefile,v 1.12 2011/06/22 02:49:43 mrg Exp $
      2   1.1  perseant #	@(#)Makefile	8.1 (Berkeley) 6/5/93
      3   1.1  perseant 
      4   1.1  perseant #	lfs_inode.c		LFS filestore-specific routines
      5   1.1  perseant #
      6   1.1  perseant #	DEBUG			use local directory to find ddate and dumpdates
      7   1.1  perseant #	TDEBUG			trace out the process forking
      8   1.1  perseant 
      9  1.11     lukem WARNS?=	3	# XXX: sign-compare issues
     10  1.11     lukem 
     11   1.4     lukem .include <bsd.own.mk>
     12   1.4     lukem 
     13   1.1  perseant PROG=	dump_lfs
     14   1.1  perseant LINKS=	${BINDIR}/dump_lfs ${BINDIR}/rdump_lfs
     15   1.4     lukem CPPFLAGS+=-DRDUMP -I${.CURDIR} -I${NETBSDSRCDIR}/sbin/dump
     16   1.2  perseant CPPFLAGS+=-DDUMP_LFS
     17   1.1  perseant # CPPFLAGS+= -DDEBUG -DTDEBUG -DFDEBUG -DWRITEDEBUG -DSTATS -DDIAGNOSTICS
     18   1.6   hannken SRCS=	itime.c main.c optr.c dumprmt.c rcache.c snapshot.c tape.c \
     19   1.6   hannken 	traverse.c unctime.c ffs_bswap.c lfs_inode.c
     20   1.1  perseant MAN=	dump_lfs.8
     21   1.1  perseant MLINKS+=dump_lfs.8 rdump_lfs.8
     22  1.10  uebayasi #CFLAGS+=-g
     23   1.1  perseant 
     24   1.9   tsutsui .if ${MACHINE_ARCH} == "m68000"
     25   1.9   tsutsui COPTS.lfs_inode.c+=	-fno-tree-ter
     26   1.9   tsutsui .endif
     27   1.9   tsutsui 
     28   1.4     lukem .PATH:  ${NETBSDSRCDIR}/sbin/dump ${NETBSDSRCDIR}/sys/ufs/lfs \
     29   1.5     lukem 	${NETBSDSRCDIR}/sys/ufs/ffs
     30   1.1  perseant 
     31   1.1  perseant .include <bsd.prog.mk>
     32  1.12       mrg 
     33  1.12       mrg # XXX
     34  1.12       mrg .if ${HAVE_GCC} == 45
     35  1.12       mrg COPTS.lfs_inode.c+=	-fno-strict-aliasing
     36  1.12       mrg .endif
     37