1 1.23 rillig # $NetBSD: Makefile,v 1.23 2021/09/14 20:13:03 rillig Exp $ 2 1.1 perseant # @(#)Makefile 8.1 (Berkeley) 6/5/93 3 1.1 perseant 4 1.16 lukem WARNS?= 3 # XXX: sign-compare issues 5 1.16 lukem 6 1.5 lukem .include <bsd.own.mk> 7 1.5 lukem 8 1.1 perseant PROG= fsck_lfs 9 1.1 perseant MAN= fsck_lfs.8 10 1.11 christos SRCS= bufcache.c dir.c fsutil.c inode.c lfs.c lfs_cksum.c lfs_itimes.c main.c 11 1.6 perseant SRCS+= pass0.c pass1.c pass2.c pass3.c pass4.c pass5.c pass6.c 12 1.6 perseant SRCS+= segwrite.c setup.c utilities.c vars.c vnode.c 13 1.17 pooka SRCS+= kernelops.c 14 1.6 perseant FSCK= ${NETBSDSRCDIR}/sbin/fsck 15 1.5 lukem .PATH: ${NETBSDSRCDIR}/sys/ufs/lfs ${FSCK} 16 1.20 dholland CPPFLAGS+=-I${.CURDIR} -I${FSCK} -DIN_FSCK_LFS 17 1.15 ad # -DVERBOSE_BLOCKMAP 18 1.1 perseant 19 1.14 christos LDADD+=-lutil 20 1.14 christos DPADD+=${LIBUTIL} 21 1.14 christos 22 1.23 rillig # As of 2021-09-14, lint does not recognize the types as equal, but it should. 23 1.23 rillig # vnode.c(104): error: redeclaration of register_vget [27] 24 1.23 rillig # vnode.h(75): previous declaration of register_vget [260] 25 1.23 rillig LINT_SUPPORTED= no 26 1.23 rillig 27 1.1 perseant .include <bsd.prog.mk> 28