mirror of
https://github.com/ProgramSnail/Lama.git
synced 2025-12-05 22:38:44 +00:00
fix clean in Makefiles
This commit is contained in:
parent
16d3f839ce
commit
4c3dba947c
3 changed files with 8 additions and 2 deletions
|
|
@ -13,3 +13,6 @@ $(TESTS): %: %.expr
|
|||
|
||||
clean:
|
||||
rm -f test*.log *.s *~ $(TESTS)
|
||||
pushd expressions && make clean && popd
|
||||
pushd deep-expressions && make clean && popd
|
||||
pushd x86only && make clean && popd
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue