mirror of
https://github.com/ProgramSnail/Lama.git
synced 2025-12-19 21:28:47 +00:00
14 lines
261 B
Makefile
14 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)
|