xref: /dragonfly/sbin/mount_null/Makefile (revision 5de36205)
1#	@(#)Makefile	8.3 (Berkeley) 3/27/94
2# $FreeBSD: src/sbin/mount_null/Makefile,v 1.5.6.1 2001/04/25 10:58:38 ru Exp $
3# $DragonFly: src/sbin/mount_null/Makefile,v 1.3 2005/04/02 22:00:18 dillon Exp $
4
5WARNS?= 6
6PROG=	mount_null
7SRCS=	mount_null.c getmntopts.c
8MAN=	mount_null.8
9
10MOUNT=	${.CURDIR}/../mount
11CFLAGS+= -I${.CURDIR}/../../sys -I${MOUNT}
12.PATH:	${MOUNT}
13
14.include <bsd.prog.mk>
15