blob: bff772d689841e59742ec0a5b8ccc26c65744239 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# $NetBSD: Makefile,v 1.10 2011/04/10 16:47:05 joerg Exp $
.include <bsd.own.mk>
PROG= mount_ffs
SRCS= mount_ffs.c pathadj.c
MAN= mount_ffs.8
MLINKS= mount_ffs.8 mount_ufs.8
LINKS= ${BINDIR}/mount_ffs ${BINDIR}/mount_ufs
MOUNT= ${NETBSDSRCDIR}/sbin/mount
CPPFLAGS+=-I${MOUNT}
.PATH: ${MOUNT}
DPADD+=${LIBUTIL}
LDADD+=-lutil
.include <bsd.prog.mk>
|