Makefile revision 15702
1
2PROG=	mkctm
3SRCS=	mkctm.c bdiff.c
4LDADD= -lmd
5CFLAGS= -g -Wall
6
7test:	mkctm
8	rm -f tst.out*
9	time ./mkctm /usr/src /a/stable/src 2>a | md5 -p > ${.CURDIR}/tst.out 
10	ls -l ${.CURDIR}/tst.out
11	gzip -9 -v tst.out
12	ls -l ${.CURDIR}/tst.out.gz
13	# cd /usr/src/release && ctm -c -v -v  ${.CURDIR}/tst.out
14
15test1:	mkctm
16	time ./mkctm 2>&1 | more
17
18.include <bsd.prog.mk>
19