mirror of
https://github.com/ProgramSnail/Lama.git
synced 2025-12-05 22:38:44 +00:00
14 lines
322 B
Makefile
14 lines
322 B
Makefile
TESTS=$(sort $(filter-out 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
|