lama_byterun/regression/x86only/Makefile

14 lines
261 B
Makefile
Raw Normal View History

2018-11-01 15:12:45 +03:00
TESTS=$(basename $(wildcard test*.expr))
RC=../../src/rc.opt
.PHONY: check $(TESTS)
check: $(TESTS)
$(TESTS): %: %.expr
@RC_RUNTIME=../../runtime $(RC) $< && cat $@.input | ./$@ > $@.log && diff $@.log orig/$@.log
clean:
rm -f test*.log *.s *~ $(TESTS)