Home | History | Annotate | Line # | Download | only in fsck_ext2fs
Makefile revision 1.13.22.1
      1  1.13.22.1  wrstuden #	$NetBSD: Makefile,v 1.13.22.1 2008/09/18 04:28:23 wrstuden 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.8    bouyer 	pass5.c fsutil.c setup.c utilities.c ext2fs_bswap.c
     10        1.9     lukem FSCK=	${NETBSDSRCDIR}/sbin/fsck
     11        1.4  christos CPPFLAGS+= -I${FSCK}
     12        1.9     lukem .PATH:	${NETBSDSRCDIR}/sys/ufs/ext2fs ${FSCK}
     13        1.1    bouyer 
     14        1.1    bouyer .include <bsd.prog.mk>
     15       1.12       mrg 
     16       1.13  christos LDADD+=-lutil
     17       1.13  christos DPADD+=${LIBUTIL}
     18       1.13  christos 
     19  1.13.22.1  wrstuden .if (defined(HAVE_GCC) && ${HAVE_GCC} == 4) || defined(HAVE_PCC)
     20       1.12       mrg .for f in pass5 utilities
     21       1.12       mrg COPTS.${f}.c+=  -Wno-pointer-sign
     22       1.12       mrg .endfor
     23       1.12       mrg .endif
     24