freebsd-dev/usr.sbin/ctm/mkCTM/Makefile
Poul-Henning Kamp 9c0f44a5b3 Improve mkctm.c so we can use it, and start using it.
This should help quite a bit on the load.  Notice that
some minor changes in config files will be needed.
Contact me for details.
1996-11-16 19:30:14 +00:00

26 lines
491 B
Makefile

PROG= mkctm
SRCS= mkctm.c
LDADD= -lmd
NOMAN= 1
CFLAGS= -g -Wall
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>