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
17 lines
310 B
Makefile
17 lines
310 B
Makefile
# $NetBSD: Makefile,v 1.21 2008/08/05 20:57:45 pooka Exp $
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
PROG= mount_msdos
|
|
SRCS= mount_msdos.c fattr.c pathadj.c
|
|
MAN= mount_msdos.8
|
|
|
|
MOUNT= ${NETBSDSRCDIR}/sbin/mount
|
|
CPPFLAGS+= -I${MOUNT} -I${NETBSDSRCDIR}/sys
|
|
.PATH: ${MOUNT}
|
|
|
|
DPADD+=${LIBUTIL}
|
|
LDADD+=-lutil
|
|
|
|
.include <bsd.prog.mk>
|