18f97ad415
Change-Id: I231a0010722619d389b763af35ff55f84ca9cb76
20 lines
473 B
Makefile
20 lines
473 B
Makefile
# $NetBSD: Makefile,v 1.34 2013/02/03 19:15:16 christos 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 specspec.c \
|
|
verify.c getid.c pack_dev.c only.c
|
|
.if (${HOSTPROG:U} == "")
|
|
DPADD+= ${LIBUTIL}
|
|
LDADD+= -lutil
|
|
.endif
|
|
|
|
CPPFLAGS+= -I${NETBSDSRCDIR}/sbin/mknod
|
|
.PATH: ${NETBSDSRCDIR}/sbin/mknod
|
|
|
|
.include <bsd.prog.mk>
|