Home | History | Annotate | Line # | Download | only in fsck_lfs
Makefile revision 1.15
      1  1.15        ad #	$NetBSD: Makefile,v 1.15 2007/12/28 21:44:32 ad Exp $
      2   1.1  perseant #	@(#)Makefile	8.1 (Berkeley) 6/5/93
      3   1.1  perseant 
      4   1.5     lukem .include <bsd.own.mk>
      5   1.5     lukem 
      6   1.1  perseant PROG=	fsck_lfs
      7   1.1  perseant MAN=	fsck_lfs.8
      8  1.11  christos SRCS=	bufcache.c dir.c fsutil.c inode.c lfs.c lfs_cksum.c lfs_itimes.c main.c
      9   1.6  perseant SRCS+=	pass0.c pass1.c pass2.c pass3.c pass4.c pass5.c pass6.c
     10   1.6  perseant SRCS+=	segwrite.c setup.c utilities.c vars.c vnode.c
     11   1.6  perseant FSCK=	${NETBSDSRCDIR}/sbin/fsck
     12   1.5     lukem .PATH:	${NETBSDSRCDIR}/sys/ufs/lfs ${FSCK}
     13  1.15        ad CPPFLAGS+=-I${.CURDIR} -I${FSCK} -DIN_FSCK_LFS "-Dmutex_enter(x)=" "-Dmutex_exit(x)="
     14  1.15        ad CPPFLAGS+="-DKASSERT(x)="
     15  1.15        ad # -DVERBOSE_BLOCKMAP 
     16   1.1  perseant 
     17  1.14  christos LDADD+=-lutil
     18  1.14  christos DPADD+=${LIBUTIL}
     19  1.14  christos 
     20   1.1  perseant .include <bsd.prog.mk>
     21