Home | History | Annotate | Line # | Download | only in newfs_lfs
Makefile revision 1.9
      1  1.9     pooka #	$NetBSD: Makefile,v 1.9 2009/08/06 00:51:55 pooka Exp $
      2  1.1  perseant #	@(#)Makefile	8.1 (Berkeley) 6/18/93
      3  1.1  perseant 
      4  1.7     lukem WARNS?=	3	# XXX: sign-compare issues
      5  1.7     lukem 
      6  1.2     lukem .include <bsd.own.mk>
      7  1.2     lukem 
      8  1.1  perseant PROG=	newfs_lfs
      9  1.3  perseant SRCS=	dkcksum.c make_lfs.c lfs_cksum.c misc.c newfs.c
     10  1.5       riz SRCS+=	bufcache.c vnode.c lfs.c segwrite.c lfs_itimes.c partutil.c
     11  1.9     pooka SRCS+=	kernelops.c
     12  1.1  perseant MAN=	newfs_lfs.8
     13  1.1  perseant 
     14  1.5       riz DISKLABEL= ${NETBSDSRCDIR}/sbin/disklabel
     15  1.3  perseant FSCK_LFS= ${NETBSDSRCDIR}/sbin/fsck_lfs
     16  1.5       riz FSCK= ${NETBSDSRCDIR}/sbin/fsck
     17  1.5       riz 
     18  1.5       riz .PATH:	${NETBSDSRCDIR}/sys/ufs/lfs ${DISKLABEL} ${FSCK_LFS} ${FSCK}
     19  1.5       riz 
     20  1.1  perseant DPADD=  ${LIBUTIL}
     21  1.1  perseant LDADD=  -lutil
     22  1.8      haad 
     23  1.8      haad LDADD+=-lprop
     24  1.8      haad DPADD+=${LIBPROP}
     25  1.8      haad 
     26  1.6        ad CPPFLAGS+=-I${FSCK_LFS} -I${FSCK} "-Dmutex_enter(x)=" "-Dmutex_exit(x)=" # -DNDEBUG # -DVERBOSE_BLOCKMAP
     27  1.6        ad CPPFLAGS+="-DKASSERT(x)="
     28  1.1  perseant 
     29  1.1  perseant .include <bsd.prog.mk>
     30