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 5PROG= mount_std 6SRCS= mount_std.c getmntopts.c 7MAN= mount_std.8 8MLINKS= mount_std.8 mount_fdesc.8 \ 9 mount_std.8 mount_linprocfs.8 \ 10 mount_std.8 mount_procfs.8 11 12MOUNT= ${.CURDIR}/../mount 13CFLAGS+= -I${MOUNT} 14.PATH: ${MOUNT} 15 16LINKS= ${BINDIR}/mount_std ${BINDIR}/mount_fdesc \ 17 ${BINDIR}/mount_std ${BINDIR}/mount_linprocfs \ 18 ${BINDIR}/mount_std ${BINDIR}/mount_procfs 19 20.include <bsd.prog.mk> 21