xref: /netbsd/sbin/mount_union/Makefile (revision c4a72b64)
1#	$NetBSD: Makefile,v 1.11 2002/09/21 18:43:38 christos Exp $
2#	@(#)Makefile	8.4 (Berkeley) 7/13/94
3
4.include <bsd.own.mk>
5
6PROG=	mount_union
7SRCS=	mount_union.c getmntopts.c
8MAN=	mount_union.8
9
10MOUNT=	${NETBSDSRCDIR}/sbin/mount
11CPPFLAGS+= -I${NETBSDSRCDIR}/sys -I${MOUNT}
12.PATH:	${MOUNT}
13
14DPADD+=${LIBUTIL}
15LDADD+=-lutil
16
17.include <bsd.prog.mk>
18