mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-18 10:35:55 +00:00
f6d189a9e4
Submitted by: Marius Nünnerich <marius@nuenneri.ch>
21 lines
384 B
Makefile
21 lines
384 B
Makefile
# @(#)Makefile 8.2 (Berkeley) 3/27/94
|
|
# $FreeBSD$
|
|
|
|
.PATH: ${.CURDIR}/../../sys/geom
|
|
|
|
PROG= newfs
|
|
DPADD= ${LIBUFS}
|
|
LDADD= -lufs
|
|
SRCS= newfs.c mkfs.c geom_bsd_enc.c
|
|
|
|
WARNS?= 3
|
|
MAN= newfs.8
|
|
|
|
.include <bsd.prog.mk>
|
|
|
|
test: ${PROG}
|
|
sh ${.CURDIR}/runtest01.sh
|
|
sh ${.CURDIR}/runtest00.sh | tee _.test
|
|
diff --ignore-matching-lines=FreeBSD _.test ${.CURDIR}/ref.test
|
|
echo All Tests Passed
|