mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-24 09:13:37 +01:00
51e16cb8fc
Remove ancient SCCS tags from the tree, automated scripting, with two minor fixup to keep things compiling. All the common forms in the tree were removed with a perl script. Sponsored by: Netflix
18 lines
486 B
Makefile
18 lines
486 B
Makefile
|
|
PACKAGE=ufs
|
|
PROG= fsck_ffs
|
|
LINKS+= ${BINDIR}/fsck_ffs ${BINDIR}/fsck_ufs
|
|
LINKS+= ${BINDIR}/fsck_ffs ${BINDIR}/fsck_4.2bsd
|
|
MAN= fsck_ffs.8
|
|
MLINKS= fsck_ffs.8 fsck_ufs.8 fsck_ffs.8 fsck_4.2bsd.8
|
|
SRCS= dir.c ea.c fsutil.c inode.c main.c pass1.c pass1b.c pass2.c pass3.c \
|
|
pass4.c pass5.c setup.c suj.c utilities.c gjournal.c getmntopts.c \
|
|
globs.c
|
|
LIBADD= ufs
|
|
WARNS?= 2
|
|
CFLAGS+= -I${.CURDIR} -I${.CURDIR:H}/mount
|
|
|
|
.PATH: ${SRCTOP}/sys/ufs/ffs ${.CURDIR:H}/mount
|
|
|
|
.include <bsd.prog.mk>
|