1 1.1 uch # $NetBSD: Makefile,v 1.1 2011/06/27 11:52:58 uch Exp $ 2 1.1 uch 3 1.1 uch .include <bsd.own.mk> 4 1.1 uch 5 1.1 uch V7FS = ${NETBSDSRCDIR}/sys/fs/v7fs 6 1.1 uch PROG= newfs_v7fs 7 1.1 uch MAN= newfs_v7fs.8 8 1.1 uch SRCS= newfs_v7fs.c main.c v7fs_endian.c v7fs_superblock.c v7fs_inode.c \ 9 1.1 uch v7fs_datablock.c v7fs_dirent.c v7fs_io.c v7fs_io_user.c progress.c 10 1.1 uch 11 1.1 uch # use progress meter. 12 1.1 uch FSCK= ${NETBSDSRCDIR}/sbin/fsck 13 1.1 uch 14 1.1 uch DPADD+= ${LIBUTIL} 15 1.1 uch LDADD+= -lutil 16 1.1 uch CPPFLAGS+=-DV7FS_EI -I${V7FS} -I${FSCK} -g 17 1.1 uch .PATH: ${V7FS} ${FSCK} 18 1.1 uch 19 1.1 uch .if defined(HAVE_GCC) && ${HAVE_GCC} == 4 20 1.1 uch COPTS.newfs_v7fs.c+= -Wno-pointer-sign 21 1.1 uch .endif 22 1.1 uch 23 1.1 uch .include <bsd.prog.mk> 24