mirror of
https://github.com/freebsd/freebsd-src.git
synced 2024-11-30 10:52:50 +00:00
023fc80ee3
Remove /^\s*#[#!]?\s*\$FreeBSD\$.*$\n/
Similar commit in main:
(cherry picked from commit d0b2dbfa0e
)
20 lines
364 B
Makefile
20 lines
364 B
Makefile
# @(#)Makefile 8.2 (Berkeley) 3/27/94
|
|
|
|
.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
|