
1: PROJDIRS = gosh/ libgauche/ gauche-config/ test-arith/ test-vmstack/ ext-*/ 2: 3: all : 4: 5: clean : 6: rm -rf gauche/ debug/ release/ *~ *.ncb *.suo *.vcproj.* test.log $(PROJDIRS) 7: 8: check : debug/gosh.exe 9: rm -f test.log 10: -@for t in `cat ../test/TESTS`; do \ 11: debug/gosh -ftest -Idebug -I../test $$t; \ 12: done > test.log 13: -@for t in ../ext/*/test.scm; do \ 14: (cd `dirname $$t`; ../../winnt/debug/gosh -ftest -I../../winnt/debug ./test.scm); \ 15: done >> test.log