mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-21 18:50:50 +01:00
e9ac41698b
This is a residual of the $FreeBSD$ removal. MFC After: 3 days (though I'll just run the command on the branches) Sponsored by: Netflix
18 lines
325 B
Makefile
18 lines
325 B
Makefile
.PATH: ${SRCTOP}/sys/geom
|
|
|
|
PACKAGE= ufs
|
|
PROG= newfs
|
|
LIBADD= ufs util
|
|
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
|