lama_byterun/stdlib/regression/Makefile
Dmitry Boulytchev 149984f5c0 Hash table
2020-01-16 06:59:34 +03:00

14 lines
280 B
Makefile

TESTS=$(sort $(basename $(wildcard test*.expr)))
RC=../../src/rc.opt
.PHONY: check $(TESTS)
check: $(TESTS)
$(TESTS): %: %.expr
@echo $@
RC_RUNTIME=../../runtime $(RC) -I .. -ds -dp $< && ./$@ > $@.log && diff $@.log orig/$@.log
clean:
$(RM) test*.log *.s *~ $(TESTS) *.i