Home | History | Annotate | Line # | Download | only in lfs_cleanerd
Makefile revision 1.14
      1  1.14  christos #	$NetBSD: Makefile,v 1.14 2009/06/21 20:20:50 christos Exp $
      2  1.10  perseant #	@(#)Makefile	8.1 (Berkeley) 6/18/93
      3   1.1   mycroft 
      4  1.13     lukem WARNS?=3		# XXX: too many sign-compare issues
      5  1.13     lukem 
      6   1.9     lukem .include <bsd.own.mk>
      7   1.9     lukem 
      8   1.1   mycroft PROG=	lfs_cleanerd
      9  1.10  perseant SRCS=	lfs_cleanerd.c fdfs.c coalesce.c cleansrv.c
     10  1.10  perseant SRCS+=  lfs_cksum.c
     11  1.10  perseant SRCS+=	bufcache.c vnode.c lfs.c # segwrite.c
     12   1.3       cgd MAN=	lfs_cleanerd.8
     13  1.10  perseant .PATH:	${NETBSDSRCDIR}/sys/ufs/lfs ${NETBSDSRCDIR}/sbin/fsck_lfs
     14   1.1   mycroft 
     15  1.10  perseant FSCK_LFS= ${NETBSDSRCDIR}/sbin/fsck_lfs
     16  1.10  perseant DPADD=  ${LIBUTIL}
     17  1.10  perseant LDADD=  -lutil
     18  1.12        ad CPPFLAGS+=-I${FSCK_LFS} "-Dmutex_enter(x)=" "-Dmutex_exit(x)=" # -DUSE_CLIENT_SERVER 
     19  1.12        ad CPPFLAGS+="-DKASSERT(x)="
     20  1.10  perseant #CPPFLAGS+=-DREPAIR_ZERO_FINFO
     21  1.10  perseant #CPPFLAGS+=-DTEST_PATTERN
     22   1.1   mycroft 
     23  1.11      jmmv BINDIR=		/libexec
     24  1.14  christos .if (${MKDYNAMICROOT} == "no")
     25  1.14  christos LDSTATIC?=      -static
     26  1.14  christos .endif
     27  1.11      jmmv 
     28   1.1   mycroft .include <bsd.prog.mk>
     29