freebsd-dev/sbin/mount_std/Makefile
Mike Pritchard d3bb9749e6 Now that all of the "standard" file system mount commands
refer the reader to the detailed information in section 5,
remove the mount_* man pages for those file system.  mount_std(8)
to cover all of the file systems it is currently being used
to mount.

mount_{devfs, fdesc, kernfs, procfs}.8 are now
MLINKS to mount_std.
1996-12-14 22:58:37 +00:00

19 lines
496 B
Makefile

# @(#)Makefile 8.2 (Berkeley) 3/27/94
PROG= mount_std
SRCS= mount_std.c getmntopts.c
MAN8= mount_std.8
MLINKS= mount_std.8 mount_devfs.8 mount_std.8 mount_fdesc.8 \
mount_std.8 mount_kernfs.8 mount_std.8 mount_procfs.8
MOUNT= ${.CURDIR}/../mount
CFLAGS+= -I${MOUNT}
.PATH: ${MOUNT}
LINKS= ${BINDIR}/mount_std ${BINDIR}/mount_devfs \
${BINDIR}/mount_std ${BINDIR}/mount_fdesc \
${BINDIR}/mount_std ${BINDIR}/mount_kernfs \
${BINDIR}/mount_std ${BINDIR}/mount_procfs
.include <bsd.prog.mk>