Makefile revision 1.26
1#	$NetBSD: Makefile,v 1.26 2003/01/19 10:49:12 jdolecek Exp $
2#	@(#)Makefile	8.6 (Berkeley) 5/8/95
3
4.include <bsd.own.mk>
5
6PROG=	mount
7MAN=	mount.8
8SRCS=	mount.c vfslist.c
9# We do NOT install the getmntopts.3 man page.
10# getmntopts.c in this directory is used by different mount programs which
11# use .PATH directives to get it.
12
13.if defined(RESCUEDIR)
14CPPFLAGS+= -D_PATH_RESCUE=\"${RESCUEDIR}\"
15.endif
16
17DPADD+=${LIBUTIL}
18LDADD+=-lutil
19
20.include <bsd.prog.mk>
21