lama_byterun/regression/deep-expressions/Makefile
Dmitry Boulytchev 30537ff6ba Imported tests
2018-02-25 15:50:03 +03:00

14 lines
296 B
Makefile

TESTS=$(basename $(wildcard generated*.expr))
RC = ../../src/rc.opt
.PHONY: check $(TESTS)
check: $(TESTS)
$(TESTS): %: %.expr
cat $@.input | $(RC) -i $< > $@.log && diff $@.log orig/$@.log
cat $@.input | $(RC) -s $< > $@.log && diff $@.log orig/$@.log
clean:
rm -f *.log *.s *~ $(TESTS)