Home | History | Annotate | Line # | Download | only in newfs_ext2fs
Makefile revision 1.1.6.2
      1  1.1.6.2  matt #	$NetBSD: Makefile,v 1.1.6.2 2008/01/09 01:38:13 matt Exp $
      2  1.1.6.2  matt #	@(#)Makefile	8.2 (Berkeley) 3/27/94
      3  1.1.6.2  matt 
      4  1.1.6.2  matt .include <bsd.own.mk>
      5  1.1.6.2  matt 
      6  1.1.6.2  matt PROG=	newfs_ext2fs
      7  1.1.6.2  matt SRCS=	newfs_ext2fs.c mke2fs.c ext2fs_bswap.c partutil.c
      8  1.1.6.2  matt MAN=	newfs_ext2fs.8
      9  1.1.6.2  matt 
     10  1.1.6.2  matt FSCK=${NETBSDSRCDIR}/sbin/fsck
     11  1.1.6.2  matt CPPFLAGS+=-I${.CURDIR} -I${FSCK}
     12  1.1.6.2  matt DPADD+= ${LIBUTIL}
     13  1.1.6.2  matt LDADD+= -lutil
     14  1.1.6.2  matt .PATH:	${NETBSDSRCDIR}/sys/ufs/ext2fs ${FSCK}
     15  1.1.6.2  matt 
     16  1.1.6.2  matt .include <bsd.prog.mk>
     17