lama_byterun/regression/x86only/Makefile
Dmitry Boulytchev 584e7a998b Added x86only
2018-11-01 15:12:45 +03:00

13 lines
261 B
Makefile

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)