--- parser3/tests/Makefile 2003/02/26 10:17:33 1.1.2.1 +++ parser3/tests/Makefile 2003/03/03 13:33:00 1.1.2.2 @@ -1,13 +1,9 @@ ifdef COMSPEC - PARSER=../src/targets/cgi/debug/parser3.exe + PARSER=./parser-cygwin.sh else - PARSER=../src/targets/cgi/parser3 + PARSER=./parser-unix.sh endif -PAFLAGS=-H - -# - DIFF=diff ECHO=echo RM=rm @@ -18,7 +14,7 @@ OUTPUTS=$(patsubst %.html,outputs/%.proc RESULTS=$(patsubst %.html,results/%.processed,$(wildcard *.html)) outputs/%.processed: %.html Makefile $(PARSER) - $(PARSER) $(PAFLAGS) $< > $@ + $(PARSER) $< > $@ .PHONY: FORCE all clean