99fed7264c
Use this routine both in mount_fs and rump_fs to provide equivalent command line parameters and therefore usage interchangeability. While doing this, combine some common mountgoop to mountprog.h
18 lines
306 B
Makefile
18 lines
306 B
Makefile
# $NetBSD: Makefile,v 1.4 2008/08/05 20:57:45 pooka Exp $
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
PROG= mount_tmpfs
|
|
SRCS= mount_tmpfs.c fattr.c pathadj.c
|
|
MAN= mount_tmpfs.8
|
|
|
|
MOUNT= ${NETBSDSRCDIR}/sbin/mount
|
|
.PATH: ${MOUNT}
|
|
|
|
CPPFLAGS+= -I${MOUNT}
|
|
DPADD+= ${LIBUTIL}
|
|
LDADD+= -lutil
|
|
WARNS= 4
|
|
|
|
.include <bsd.prog.mk>
|