Merge branch 'hw15'

This commit is contained in:
Dmitry Boulytchev 2019-03-07 14:44:34 +03:00
commit f14bbf8fcb
11 changed files with 2259 additions and 83 deletions

View file

@ -12,4 +12,7 @@ $(TESTS): %: %.expr
@cat $@.input | $(RC) -s $< > $@.log && diff $@.log orig/$@.log
clean:
rm -f test*.log *.s *~ $(TESTS)
$(RM) test*.log *.s *~ $(TESTS)
$(MAKE) clean -C expressions
$(MAKE) clean -C deep-expressions
$(MAKE) clean -C x86only

View file

@ -12,4 +12,5 @@ $(TESTS): %: %.expr
@cat $@.input | $(RC) -s $< > $@.log && diff $@.log orig/$@.log
clean:
rm -f *.log *.s *~ $(TESTS)
rm -f *.log *.s *~
find . -maxdepth 1 -type f -not -name '*.*' -not -name 'Makefile' -delete

View file

@ -12,4 +12,6 @@ $(TESTS): %: %.expr
@cat $@.input | $(RC) -s $< > $@.log && diff $@.log orig/$@.log
clean:
rm -f *.log *.s *~ $(TESTS)
rm -f *.log *.s *~
find . -maxdepth 1 -type f -not -name '*.*' -not -name 'Makefile' -delete

View file

@ -28,4 +28,3 @@ write (find (t, 6));
write (find (t, 3));
write (find (t, 2));
write (find (t, 1))