S-expressions and pattern matching

This commit is contained in:
Dmitry Boulytchev 2018-05-04 02:59:23 +03:00 committed by danyaberezun
parent 958bf482a8
commit 800d976b8e
8 changed files with 148 additions and 88 deletions

View file

@ -9,7 +9,7 @@ check: $(TESTS)
$(TESTS): %: %.expr
#@$(RC) $< && cat $@.input | ./$@ > $@.log && diff $@.log orig/$@.log
cat $@.input | $(RC) -i $< > $@.log && diff $@.log orig/$@.log
#cat $@.input | $(RC) -s $< > $@.log && diff $@.log orig/$@.log
cat $@.input | $(RC) -s $< > $@.log && diff $@.log orig/$@.log
clean:
rm -f test*.log *.s *~ $(TESTS)