181b0c28e987a320ebdb9d90e8c89845a90e730b
[dragonfly.git] / sbin / mount_std / Makefile
1 #       @(#)Makefile    8.2 (Berkeley) 3/27/94
2 #       $FreeBSD: src/sbin/mount_std/Makefile,v 1.4.6.5 2003/02/10 12:21:07 des Exp $
3 #       $DragonFly: src/sbin/mount_std/Makefile,v 1.3 2006/10/17 00:55:42 pavalos Exp $
4
5 WARNS?= 2
6 PROG=   mount_std
7 SRCS=   mount_std.c getmntopts.c
8 MAN=    mount_std.8
9 MLINKS= mount_std.8 mount_fdesc.8 \
10         mount_std.8 mount_linprocfs.8 \
11         mount_std.8 mount_procfs.8
12
13 MOUNT=  ${.CURDIR}/../mount
14 CFLAGS+= -I${MOUNT}
15 .PATH:  ${MOUNT}
16
17 LINKS=  ${BINDIR}/mount_std ${BINDIR}/mount_fdesc \
18         ${BINDIR}/mount_std ${BINDIR}/mount_linprocfs \
19         ${BINDIR}/mount_std ${BINDIR}/mount_procfs
20
21 .include <bsd.prog.mk>