Makefile revision 267654
1#	@(#)Makefile	8.2 (Berkeley) 3/27/94
2# $FreeBSD: releng/9.3/sbin/newfs/Makefile 204654 2010-03-03 19:25:28Z sobomax $
3
4.PATH: ${.CURDIR}/../../sys/geom
5
6PROG=	newfs
7DPADD=	${LIBUFS} ${LIBUTIL}
8LDADD=	-lufs -lutil
9SRCS=	newfs.c mkfs.c geom_bsd_enc.c
10
11WARNS?=	3
12MAN=	newfs.8
13
14.include <bsd.prog.mk>
15
16test:	${PROG}
17	sh ${.CURDIR}/runtest01.sh 
18	sh ${.CURDIR}/runtest00.sh | tee _.test
19	diff --ignore-matching-lines=FreeBSD _.test ${.CURDIR}/ref.test
20	echo All Tests Passed
21