fix clean option

This commit is contained in:
danyabeerzun 2020-01-14 18:35:33 +03:00
parent 164c475210
commit 3b5e44af20
2 changed files with 2 additions and 1 deletions

View file

@ -9,4 +9,5 @@ all: $(ALL)
clean: clean:
rm -Rf *.s *.o *.i *~ rm -Rf *.s *.o *.i *~
pushd regression && make clean && popd

View file

@ -11,4 +11,4 @@ $(TESTS): %: %.expr
RC_RUNTIME=../../runtime $(RC) -I .. $< && ./$@ > $@.log && diff $@.log orig/$@.log RC_RUNTIME=../../runtime $(RC) -I .. $< && ./$@ > $@.log && diff $@.log orig/$@.log
clean: clean:
$(RM) test*.log *.s *~ $(TESTS) $(RM) test*.log *.s *~ $(TESTS) *.i