Home | History | Annotate | Line # | Download | only in fsck_ffs
Makefile revision 1.26
      1  1.26  christos #	$NetBSD: Makefile,v 1.26 2005/01/13 19:56:02 christos 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.24       dbj 	ffs_tables.c ffs_appleufs.c
     11  1.25  christos 
     12  1.23     lukem FSCK=	${NETBSDSRCDIR}/sbin/fsck
     13  1.19  christos CPPFLAGS+=-I${FSCK}
     14  1.26  christos .ifndef  SMALLPROG
     15  1.26  christos CPPFLAGS+=-DPROGRESS
     16  1.26  christos .endif
     17  1.25  christos SRCS+=	progress.c
     18  1.25  christos .PATH:	${FSCK}
     19  1.25  christos 
     20  1.23     lukem .PATH:	${NETBSDSRCDIR}/sys/ufs/ffs ${FSCK}
     21  1.21    bouyer 
     22   1.7       cgd 
     23   1.8       cgd .if make(install)
     24  1.20   mycroft SUBDIR+=SMM.doc
     25   1.7       cgd .endif
     26   1.1       cgd 
     27   1.1       cgd .include <bsd.prog.mk>
     28  1.20   mycroft .include <bsd.subdir.mk>
     29