lama_byterun/stdlib/regression/Makefile

15 lines
272 B
Makefile
Raw Normal View History

TESTS=$(sort $(basename $(wildcard test*.expr)))
RC=../../src/rc.opt
.PHONY: check $(TESTS)
check: $(TESTS)
$(TESTS): %: %.expr
@echo $@
RC_RUNTIME=../../runtime $(RC) -I .. $< && ./$@ > $@.log && diff $@.log orig/$@.log
clean:
2020-01-14 18:35:33 +03:00
$(RM) test*.log *.s *~ $(TESTS) *.i