lama_byterun/stdlib/regression/Makefile
Roman Venediktov 7ccd5cd7d5 Disabled test02
2024-07-11 15:19:22 +02:00

14 lines
356 B
Makefile

TESTS=$(sort $(filter-out test02 test03 test07 test30, $(basename $(wildcard test*.lama))))
LAMAC=../../src/lamac
.PHONY: check $(TESTS)
check: $(TESTS)
$(TESTS): %: %.lama
@echo "stdlib/regression/$@"
@LAMA=../../runtime $(LAMAC) -I .. -ds -dp $< && arch -X86_64 ./$@ > $@.log && diff $@.log orig/$@.log
clean:
$(RM) test*.log *.s *~ $(TESTS) *.i