Home | History | Annotate | Line # | Download | only in fsck_ext2fs
Makefile revision 1.13
      1  1.13  christos #	$NetBSD: Makefile,v 1.13 2006/08/26 18:14:28 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.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.12       mrg .if ${HAVE_GCC} == 4
     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