Makefile revision 1.9
1ED!=cd $(.CURDIR)/..; \ 2 printf "xxx:\n\techo \$${.OBJDIR}/ed\n" | make -r -s -f - xxx 3 4all: build test 5 @echo done 6 7build: mkscripts.sh 8 @echo building test scripts... 9 @chmod +x mkscripts.sh 10 @./mkscripts.sh ${ED} 11 12test: build ckscripts.sh 13 @echo running test scripts... 14 @chmod +x ckscripts.sh 15 @./ckscripts.sh ${ED} 16 17clean: 18 rm -f *.ed *.[oz] *~ 19