76479f1d3f
Makefiles should not assume that source files can be overwritten. This is the common case for Perforce source trees. This is a followup commit to r211243 in the same vein. MFC after: 1 month Sponsored by: Spectra Logic MFSpectraBSD: r1036319 on 2014/01/29, r1046711 on 2014/03/06
23 lines
400 B
Makefile
23 lines
400 B
Makefile
# From: @(#)Makefile 8.1 (Berkeley) 6/6/93
|
|
# $FreeBSD$
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
.PATH: ${.CURDIR}/../../usr.bin/cksum
|
|
|
|
PROG= fmtree
|
|
MAN= fmtree.8
|
|
SRCS= compare.c crc.c create.c excludes.c misc.c mtree.c spec.c verify.c
|
|
SRCS+= specspec.c
|
|
|
|
CFLAGS+= -DMD5 -DSHA1 -DRMD160 -DSHA256
|
|
DPADD= ${LIBMD}
|
|
LDADD= -lmd
|
|
|
|
CLEANFILES+= fmtree.8
|
|
|
|
fmtree.8: mtree.8
|
|
cp -f ${.ALLSRC} ${.TARGET}
|
|
|
|
.include <bsd.prog.mk>
|