]> CyberLeo.Net >> Repos - FreeBSD/releng/9.2.git/blob - sbin/mount_std/Makefile
- Copy stable/9 to releng/9.2 as part of the 9.2-RELEASE cycle.
[FreeBSD/releng/9.2.git] / sbin / mount_std / Makefile
1 #       @(#)Makefile    8.2 (Berkeley) 3/27/94
2 #       $FreeBSD$
3
4 PROG=   mount_std
5 SRCS=   mount_std.c getmntopts.c
6 MAN=    mount_std.8
7 MLINKS= 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
12 MOUNT=  ${.CURDIR}/../mount
13 CFLAGS+= -I${MOUNT}
14 WARNS?= 3
15
16 .PATH:  ${MOUNT}
17
18 LINKS=  ${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>