mirror of
https://github.com/ProgramSnail/Lama.git
synced 2025-12-06 06:48:48 +00:00
14 lines
329 B
Makefile
14 lines
329 B
Makefile
TESTS=$(sort $(filter-out test02 test30, $(basename $(wildcard test*.lama))))
|
|
|
|
LAMAC=../../src/lamac
|
|
|
|
.PHONY: check $(TESTS)
|
|
|
|
check: $(TESTS)
|
|
|
|
$(TESTS): %: %.lama
|
|
@echo "stdlib/regression/$@"
|
|
@LAMA=../../runtime $(LAMAC) -I .. -ds -dp $< && ./$@ > $@.log && diff $@.log orig/$@.log
|
|
|
|
clean:
|
|
$(RM) test*.log *.s *~ $(TESTS) *.i
|