]> CyberLeo.Net >> Repos - FreeBSD/releng/10.0.git/blob - usr.sbin/mtree/Makefile
- Copy stable/10 (r259064) to releng/10.0 as part of the
[FreeBSD/releng/10.0.git] / usr.sbin / mtree / Makefile
1 #       From: @(#)Makefile      8.1 (Berkeley) 6/6/93
2 # $FreeBSD$
3
4 .include <bsd.own.mk>
5
6 .PATH: ${.CURDIR}/../../usr.bin/cksum
7
8 PROG=   fmtree
9 MAN=    fmtree.8 mtree.5
10 SRCS=   compare.c crc.c create.c excludes.c misc.c mtree.c spec.c verify.c
11 SRCS+=  specspec.c
12
13 CFLAGS+= -DMD5 -DSHA1 -DRMD160 -DSHA256
14 DPADD=  ${LIBMD}
15 LDADD=  -lmd
16
17 .if ${MK_NMTREE} == "no"
18 LINKS=  ${BINDIR}/fmtree ${BINDIR}/mtree
19 MLINKS= fmtree.8 mtree.8
20 .endif
21
22 CLEANFILES+=    fmtree.8
23
24 fmtree.8: mtree.8
25         cp ${.ALLSRC} ${.TARGET}
26
27 .include <bsd.prog.mk>