]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sbin/mount_std/Makefile
Copy device support from head in to 6
[FreeBSD/FreeBSD.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_linsysfs.8 \
11         mount_std.8 mount_procfs.8
12
13 MOUNT=  ${.CURDIR}/../mount
14 CFLAGS+= -I${MOUNT}
15 WARNS?= 0
16
17 .PATH:  ${MOUNT}
18
19 LINKS=  ${BINDIR}/mount_std ${BINDIR}/mount_devfs \
20         ${BINDIR}/mount_std ${BINDIR}/mount_fdescfs \
21         ${BINDIR}/mount_std ${BINDIR}/mount_linprocfs \
22         ${BINDIR}/mount_std ${BINDIR}/mount_linsysfs \
23         ${BINDIR}/mount_std ${BINDIR}/mount_procfs
24
25 .include <bsd.prog.mk>