Home | History | Annotate | Line # | Download | only in fsck_ext2fs
Makefile revision 1.13
      1 #	$NetBSD: Makefile,v 1.13 2006/08/26 18:14:28 christos Exp $
      2 #	@(#)Makefile	8.1 (Berkeley) 6/5/93
      3 
      4 .include <bsd.own.mk>
      5 
      6 PROG=	fsck_ext2fs
      7 MAN=    fsck_ext2fs.8
      8 SRCS=	dir.c inode.c main.c pass1.c pass1b.c pass2.c pass3.c pass4.c \
      9 	pass5.c fsutil.c setup.c utilities.c ext2fs_bswap.c
     10 FSCK=	${NETBSDSRCDIR}/sbin/fsck
     11 CPPFLAGS+= -I${FSCK}
     12 .PATH:	${NETBSDSRCDIR}/sys/ufs/ext2fs ${FSCK}
     13 
     14 .include <bsd.prog.mk>
     15 
     16 LDADD+=-lutil
     17 DPADD+=${LIBUTIL}
     18 
     19 .if ${HAVE_GCC} == 4
     20 .for f in pass5 utilities
     21 COPTS.${f}.c+=  -Wno-pointer-sign
     22 .endfor
     23 .endif
     24