36d65f1138
Add Wasabi System's WAPBL (Write Ahead Physical Block Logging) journaling code. Originally written by Darrin B. Jewell while at Wasabi and updated to -current by Antti Kantee, Andy Doran, Greg Oster and Simon Burge. OK'd by core@, releng@.
43 lines
873 B
Makefile
43 lines
873 B
Makefile
# $NetBSD: Makefile,v 1.36 2008/07/31 05:38:04 simonb Exp $
|
|
# @(#)Makefile 8.2 (Berkeley) 4/27/95
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
PROG= fsck_ffs
|
|
MAN= fsck_ffs.8
|
|
SRCS= dir.c inode.c main.c pass1.c pass1b.c pass2.c pass3.c pass4.c \
|
|
pass5.c fsutil.c setup.c utilities.c ffs_bswap.c ffs_subr.c \
|
|
ffs_tables.c ffs_appleufs.c partutil.c
|
|
|
|
FSCK= ${NETBSDSRCDIR}/sbin/fsck
|
|
CPPFLAGS+=-I${FSCK}
|
|
.ifndef SMALLPROG
|
|
CPPFLAGS+=-DPROGRESS
|
|
.endif
|
|
SRCS+= progress.c
|
|
.PATH: ${FSCK}
|
|
|
|
.PATH: ${NETBSDSRCDIR}/sys/ufs/ffs ${FSCK}
|
|
|
|
SRCS+= vfs_wapbl.c wapbl.c
|
|
.PATH: ${NETBSDSRCDIR}/sys/kern
|
|
CPPFLAGS+=-DWAPBL_DEBUG_PRINT=0
|
|
|
|
LDADD+=-lutil
|
|
DPADD+=${LIBUTIL}
|
|
|
|
.if ${HAVE_GCC} == 4
|
|
COPTS.ffs_appleufs.c+= -Wno-pointer-sign
|
|
.endif
|
|
|
|
.if ${MACHINE_ARCH} == "m68000"
|
|
COPTS.pass1.c+= -fno-tree-fre -fno-tree-lrs
|
|
.endif
|
|
|
|
.if make(install)
|
|
SUBDIR+=SMM.doc
|
|
.endif
|
|
|
|
.include <bsd.prog.mk>
|
|
.include <bsd.subdir.mk>
|