Home | History | Annotate | Line # | Download | only in fsck_ext2fs
Makefile revision 1.17.26.1
      1  1.17.26.1  christos #	$NetBSD: Makefile,v 1.17.26.1 2019/06/10 22:05:33 christos 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.17.26.1  christos 	pass5.c fsutil.c setup.c utilities.c ext2fs_bswap.c \
     10  1.17.26.1  christos 	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.17.26.1  christos 
     22  1.17.26.1  christos LDADD+=-lprop
     23  1.17.26.1  christos DPADD+=${LIBPROP}
     24