blob: 50d452ddbe3370ffaf89e84143f055133cfde4c3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# $NetBSD: Makefile,v 1.1 2011/06/27 11:52:58 uch Exp $
.include <bsd.own.mk>
PROG= mount_v7fs
SRCS= mount_v7fs.c fattr.c pathadj.c
MAN= mount_v7fs.8
MOUNT= ${NETBSDSRCDIR}/sbin/mount
CPPFLAGS+= -I${MOUNT}
.PATH: ${MOUNT}
DPADD+=${LIBUTIL}
LDADD+=-lutil
.include <bsd.prog.mk>
|