Home | History | Annotate | Line # | Download | only in newfs_ext2fs
Makefile revision 1.3
      1  1.3     haad #	$NetBSD: Makefile,v 1.3 2009/06/05 21:52:31 haad Exp $
      2  1.1  tsutsui #	@(#)Makefile	8.2 (Berkeley) 3/27/94
      3  1.1  tsutsui 
      4  1.2    lukem WARNS?=	3	# XXX: sign-compare issues
      5  1.2    lukem 
      6  1.1  tsutsui .include <bsd.own.mk>
      7  1.1  tsutsui 
      8  1.1  tsutsui PROG=	newfs_ext2fs
      9  1.1  tsutsui SRCS=	newfs_ext2fs.c mke2fs.c ext2fs_bswap.c partutil.c
     10  1.1  tsutsui MAN=	newfs_ext2fs.8
     11  1.1  tsutsui 
     12  1.1  tsutsui FSCK=${NETBSDSRCDIR}/sbin/fsck
     13  1.1  tsutsui CPPFLAGS+=-I${.CURDIR} -I${FSCK}
     14  1.3     haad 
     15  1.1  tsutsui DPADD+= ${LIBUTIL}
     16  1.1  tsutsui LDADD+= -lutil
     17  1.3     haad 
     18  1.3     haad LDADD+=-lprop
     19  1.3     haad DPADD+=${LIBPROP}
     20  1.3     haad 
     21  1.1  tsutsui .PATH:	${NETBSDSRCDIR}/sys/ufs/ext2fs ${FSCK}
     22  1.1  tsutsui 
     23  1.1  tsutsui .include <bsd.prog.mk>
     24