d433a56288
mtree is only used for cross compilation at this point. Also, the required patches to make it compile on Minix cripple it probably enough to make it unusable anyway.
20 lines
452 B
Makefile
20 lines
452 B
Makefile
# $NetBSD: Makefile,v 1.32 2009/04/22 15:23:05 lukem Exp $
|
|
# from: @(#)Makefile 8.2 (Berkeley) 4/27/95
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
PROG= mtree
|
|
#CPPFLAGS+=-DDEBUG
|
|
CPPFLAGS+= -DMTREE
|
|
MAN= mtree.8
|
|
SRCS= compare.c crc.c create.c excludes.c misc.c mtree.c spec.c verify.c \
|
|
getid.c pack_dev.c
|
|
.if (${HOSTPROG:U} == "")
|
|
DPADD+= ${LIBUTIL}
|
|
LDADD+= -lutil
|
|
.endif
|
|
|
|
CPPFLAGS+= -I${NETBSDSRCDIR}/sbin/mknod
|
|
.PATH: ${NETBSDSRCDIR}/sbin/mknod
|
|
|
|
.include <bsd.prog.mk>
|