Makefile revision 1.6
1# $Id: Makefile,v 1.6 1993/08/02 20:43:57 jtc Exp $ 2 3.if exists(../obj) 4ED= ../obj/ed 5.else 6ED= ../ed 7.endif 8 9all: ${ED} build test 10 @echo done 11 12build: mkscripts.sh 13 @echo building test scripts... 14 @chmod +x mkscripts.sh 15 @./mkscripts.sh ${ED} 16 17test: build ckscripts.sh 18 @echo running test scripts... 19 @chmod +x ckscripts.sh 20 @./ckscripts.sh ${ED} 21 22clean: 23 rm -f *.ed *.[oz] *~ 24