lama_byterun/regression/deep-expressions/Makefile
Dmitry Boulytchev c084e57b27 Sync
2020-03-15 12:41:31 +03:00

17 lines
482 B
Makefile

TESTS=$(sort $(basename $(wildcard generated*.lama)))
LAMAC = ../../src/lamac
.PHONY: check $(TESTS)
check: $(TESTS)
$(TESTS): %: %.lama
@echo $@
@LAMA=../../runtime $(LAMAC) $< && cat $@.input | ./$@ > $@.log && diff $@.log orig/$@.log
@cat $@.input | $(LAMAC) -i $< > $@.log && diff $@.log orig/$@.log
@cat $@.input | $(LAMAC) -s $< > $@.log && diff $@.log orig/$@.log
clean:
rm -f *.log *.s *~
find . -maxdepth 1 -type f -not -name '*.*' -not -name 'Makefile' -delete