Makefile revision 1.30
1#	$NetBSD: Makefile,v 1.30 2006/12/16 12:59:17 bouyer Exp $
2#	from: @(#)Makefile	8.2 (Berkeley) 4/27/95
3
4.include <bsd.own.mk>
5
6PROG=	mtree
7#CPPFLAGS+=-DDEBUG
8CPPFLAGS+= -DMTREE
9MAN=	mtree.8
10SRCS=	compare.c crc.c create.c excludes.c misc.c mtree.c spec.c verify.c \
11	getid.c pack_dev.c
12.if (${HOSTPROG:U} == "")
13DPADD+= ${LIBUTIL}
14LDADD+= -lutil
15.endif
16WARNS?=	3
17
18CPPFLAGS+=	-I${NETBSDSRCDIR}/sbin/mknod
19.PATH:		${NETBSDSRCDIR}/sbin/mknod
20
21.include <bsd.prog.mk>
22