mirror of
https://github.com/ProgramSnail/Lama.git
synced 2025-12-06 06:48:48 +00:00
15 lines
268 B
Makefile
15 lines
268 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 .. $< && ./$@ > $@.log && diff $@.log orig/$@.log
|
||
|
|
|
||
|
|
clean:
|
||
|
|
$(RM) test*.log *.s *~ $(TESTS)
|