Home | History | Annotate | Line # | Download | only in fsck_ext2fs
      1  1.18   mlelstv #	$NetBSD: Makefile,v 1.18 2019/03/31 10:55:58 mlelstv Exp $
      2   1.1    bouyer #	@(#)Makefile	8.1 (Berkeley) 6/5/93
      3   1.1    bouyer 
      4   1.9     lukem .include <bsd.own.mk>
      5   1.9     lukem 
      6   1.1    bouyer PROG=	fsck_ext2fs
      7   1.1    bouyer MAN=    fsck_ext2fs.8
      8   1.1    bouyer SRCS=	dir.c inode.c main.c pass1.c pass1b.c pass2.c pass3.c pass4.c \
      9  1.18   mlelstv 	pass5.c fsutil.c setup.c utilities.c ext2fs_bswap.c \
     10  1.18   mlelstv 	partutil.c
     11   1.9     lukem FSCK=	${NETBSDSRCDIR}/sbin/fsck
     12   1.4  christos CPPFLAGS+= -I${FSCK}
     13   1.9     lukem .PATH:	${NETBSDSRCDIR}/sys/ufs/ext2fs ${FSCK}
     14   1.1    bouyer 
     15  1.17     joerg CWARNFLAGS.clang+=	-Wno-error=tautological-pointer-compare
     16  1.17     joerg 
     17   1.1    bouyer .include <bsd.prog.mk>
     18  1.12       mrg 
     19  1.13  christos LDADD+=-lutil
     20  1.13  christos DPADD+=${LIBUTIL}
     21  1.18   mlelstv 
     22  1.18   mlelstv LDADD+=-lprop
     23  1.18   mlelstv DPADD+=${LIBPROP}
     24