Home | History | Annotate | Line # | Download | only in fsck_ffs
Makefile revision 1.42
      1  1.42       mrg #	$NetBSD: Makefile,v 1.42 2011/06/20 07:44:00 mrg Exp $
      2  1.17     lukem #	@(#)Makefile	8.2 (Berkeley) 4/27/95
      3   1.1       cgd 
      4  1.39     lukem WARNS?=	3	# XXX: sign-compare issues
      5  1.39     lukem 
      6  1.23     lukem .include <bsd.own.mk>
      7  1.23     lukem 
      8  1.11       cgd PROG=	fsck_ffs
      9  1.11       cgd MAN=	fsck_ffs.8
     10   1.1       cgd SRCS=	dir.c inode.c main.c pass1.c pass1b.c pass2.c pass3.c pass4.c \
     11  1.41    bouyer 	pass5.c pass6.c fsutil.c setup.c utilities.c ffs_bswap.c ffs_subr.c \
     12  1.41    bouyer 	ffs_tables.c ffs_appleufs.c partutil.c snapshot.c quota2.c quota2_subr.c
     13  1.25  christos 
     14  1.23     lukem FSCK=	${NETBSDSRCDIR}/sbin/fsck
     15  1.38    bouyer DUMP=	${NETBSDSRCDIR}/sbin/dump
     16  1.38    bouyer CPPFLAGS+=-I${FSCK} -I${DUMP}
     17  1.26  christos .ifndef  SMALLPROG
     18  1.26  christos CPPFLAGS+=-DPROGRESS
     19  1.26  christos .endif
     20  1.25  christos SRCS+=	progress.c
     21  1.25  christos .PATH:	${FSCK}
     22  1.25  christos 
     23  1.41    bouyer .PATH:	${NETBSDSRCDIR}/sys/ufs/ffs ${NETBSDSRCDIR}/sys/ufs/ufs ${FSCK} ${DUMP}
     24  1.21    bouyer 
     25  1.36    simonb SRCS+= vfs_wapbl.c wapbl.c
     26  1.36    simonb .PATH:	${NETBSDSRCDIR}/sys/kern
     27  1.36    simonb CPPFLAGS+=-DWAPBL_DEBUG_PRINT=0
     28  1.36    simonb 
     29  1.33  christos LDADD+=-lutil
     30  1.33  christos DPADD+=${LIBUTIL}
     31  1.33  christos 
     32  1.40      haad LDADD+=-lprop
     33  1.40      haad DPADD+=${LIBPROP}
     34  1.40      haad 
     35  1.42       mrg .if defined(HAVE_GCC) || defined(HAVE_PCC)
     36  1.29       mrg COPTS.ffs_appleufs.c+=	-Wno-pointer-sign
     37  1.29       mrg .endif
     38   1.7       cgd 
     39  1.35   tsutsui .if ${MACHINE_ARCH} == "m68000"
     40  1.35   tsutsui COPTS.pass1.c+=	-fno-tree-fre -fno-tree-lrs
     41  1.35   tsutsui .endif
     42  1.35   tsutsui 
     43   1.8       cgd .if make(install)
     44  1.20   mycroft SUBDIR+=SMM.doc
     45   1.7       cgd .endif
     46   1.1       cgd 
     47   1.1       cgd .include <bsd.prog.mk>
     48  1.20   mycroft .include <bsd.subdir.mk>
     49