Makefile revision 1.22
1#	$NetBSD: Makefile,v 1.22 2002/01/24 03:20:11 lukem Exp $
2#	from: @(#)Makefile	8.2 (Berkeley) 4/27/95
3
4PROG=	mtree
5#CPPFLAGS+=-DDEBUG
6MAN=	mtree.8
7SRCS=	compare.c crc.c create.c excludes.c misc.c mtree.c spec.c verify.c \
8	getid.c stat_flags.c pack_dev.c
9WARNS?=	2
10
11LDADD+=	-lutil
12DPADD+=	${LIBUTIL}
13
14CPPFLAGS+=	-I${.CURDIR}/../../bin/ls -I${.CURDIR}/../../sbin/mknod
15.PATH:	${.CURDIR}/../../bin/ls ${.CURDIR}/../../sbin/mknod
16
17.ifndef HOSTPROG
18.include <bsd.prog.mk>
19.endif
20