mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-26 10:53:39 +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
16 lines
440 B
Makefile
16 lines
440 B
Makefile
# $NetBSD: Makefile,v 1.1.1.1 1995/10/08 23:08:36 thorpej Exp $
|
|
|
|
PACKAGE=ufs
|
|
PROG= fsdb
|
|
MAN= fsdb.8
|
|
SRCS= fsdb.c fsdbutil.c \
|
|
dir.c ea.c fsutil.c inode.c pass1.c pass1b.c pass2.c pass3.c pass4.c \
|
|
pass5.c setup.c utilities.c ffs_subr.c ffs_tables.c globs.c prtblknos.c
|
|
CFLAGS+= -I${.CURDIR:H}/fsck_ffs
|
|
WARNS?= 2
|
|
LIBADD= edit ufs
|
|
.PATH: ${.CURDIR:H}/fsck_ffs ${SRCTOP}/sys/ufs/ffs \
|
|
${SRCTOP}/tools/diag/prtblknos
|
|
|
|
.include <bsd.prog.mk>
|