1#	@(#)Makefile	8.2 (Berkeley) 3/27/94
2#	$FreeBSD$
3
4PROG=	mount_std
5SRCS=	mount_std.c getmntopts.c
6MAN=	mount_std.8
7MLINKS=	mount_std.8 mount_devfs.8 \
8	mount_std.8 mount_fdescfs.8 \
9	mount_std.8 mount_linprocfs.8 \
10	mount_std.8 mount_procfs.8
11
12MOUNT=	${.CURDIR}/../mount
13CFLAGS+= -I${MOUNT}
14WARNS?=	3
15
16.PATH:	${MOUNT}
17
18LINKS=	${BINDIR}/mount_std ${BINDIR}/mount_devfs \
19	${BINDIR}/mount_std ${BINDIR}/mount_fdescfs \
20	${BINDIR}/mount_std ${BINDIR}/mount_linprocfs \
21	${BINDIR}/mount_std ${BINDIR}/mount_procfs
22
23.include <bsd.prog.mk>
24