freebsd-dev/usr.sbin/ctm/mkCTM/Makefile
David E. O'Brien 90e655ea4e Perform a major cleanup of the usr.sbin Makefiles.
These are not perfectly in agreement with each other style-wise, but they
are orders of orders of magnitude more consistent style-wise than before.
2001-07-20 06:20:32 +00:00

27 lines
487 B
Makefile

# $FreeBSD$
PROG= mkctm
NOMAN= 1
SRCS= mkctm.c
LDADD= -lmd
test: mkctm
rm -f tst.out*
time ./mkctm -v -v /3c/210src /a/r1/usr/src \
2>a | md5 -p > /a/tst.out
ls -l /a/tst.out
gzip -9 -v /a/tst.out
ls -l /a/tst.out.gz
# cd /usr/src/release && ctm -c -v -v ${.CURDIR}/tst.out
test1: mkctm
rm -f tst.out*
time ./mkctm -v -v /3c/210src /home/ncvs/src \
2> b | md5 -p > /a/tst2.out
ls -l /a/tst2.out
gzip -9 -v /a/tst2.out
ls -l /a/tst2.out.gz
.include <bsd.prog.mk>