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