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 PROG= fsck_v7fs 6 1.1 uch MAN= fsck_v7fs.8 7 1.1 uch SRCS= fsck_v7fs.c main.c pathname.c inode.c datablock.c freeblock.c \ 8 1.1 uch v7fs_datablock.c v7fs_io.c v7fs_superblock.c v7fs_inode.c v7fs_file.c \ 9 1.1 uch v7fs_dirent.c v7fs_endian.c v7fs_io_user.c v7fs_inode_util.c \ 10 1.1 uch v7fs_file_util.c v7fs_superblock_util.c fsutil.c progress.c 11 1.1 uch 12 1.1 uch FSCK= ${NETBSDSRCDIR}/sbin/fsck 13 1.1 uch V7FS= ${NETBSDSRCDIR}/sys/fs/v7fs 14 1.1 uch CPPFLAGS+= -I${FSCK} -I${V7FS} -DV7FS_EI -g 15 1.1 uch .PATH: ${FSCK} ${V7FS} 16 1.1 uch 17 1.1 uch LDADD+=-lutil 18 1.1 uch DPADD+=${LIBUTIL} 19 1.1 uch 20 1.1 uch .include <bsd.prog.mk> 21