summaryrefslogtreecommitdiff
path: root/sbin/newfs_v7fs/Makefile
blob: 961a05c66ffee3022ae874c3add57c4e29d3d93e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# $NetBSD: Makefile,v 1.4 2012/09/05 23:01:42 riz Exp $

.include <bsd.own.mk>

V7FS = ${NETBSDSRCDIR}/sys/fs/v7fs
PROG=	newfs_v7fs
MAN=	newfs_v7fs.8
SRCS= newfs_v7fs.c main.c v7fs_endian.c v7fs_superblock.c v7fs_inode.c	\
v7fs_datablock.c v7fs_dirent.c v7fs_io.c v7fs_io_user.c progress.c

# use progress meter.
FSCK=	${NETBSDSRCDIR}/sbin/fsck

DPADD+= ${LIBUTIL}
LDADD+= -lutil
CPPFLAGS+=-DV7FS_EI -I${V7FS} -I${FSCK}
.PATH: ${V7FS} ${FSCK}

COPTS.newfs_v7fs.c+=	-Wno-pointer-sign

.include <bsd.prog.mk>