Error out if no volumes are specified instead of core-dumping.
[dragonfly.git] / sbin / mount_std / Makefile
blob181b0c28e987a320ebdb9d90e8c89845a90e730b
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 $
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
13 MOUNT= ${.CURDIR}/../mount
14 CFLAGS+= -I${MOUNT}
15 .PATH: ${MOUNT}
17 LINKS= ${BINDIR}/mount_std ${BINDIR}/mount_fdesc \
18 ${BINDIR}/mount_std ${BINDIR}/mount_linprocfs \
19 ${BINDIR}/mount_std ${BINDIR}/mount_procfs
21 .include <bsd.prog.mk>