1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-04-30 15:49:41 +02:00

Sort recursive make calls in Makefile.in.

This commit is contained in:
benjamin.drung@gmail.com 2013-10-24 00:31:46 +00:00
parent 5a7675651f
commit 3b0c32bc17

View File

@ -149,8 +149,10 @@ dep:
clean: clean:
$(MAKE) -C lib-src clean $(MAKE) -C lib-src clean
$(MAKE) -C src clean $(MAKE) -C locale clean
test ! -f tests/Makefile || $(MAKE) -C tests clean test ! -f tests/Makefile || $(MAKE) -C tests clean
$(MAKE) -C src clean
rm -f audacity rm -f audacity
rm -f help/audacity.1.gz rm -f help/audacity.1.gz
rm -rf Audacity.app rm -rf Audacity.app
@ -163,8 +165,8 @@ veryclean: clean
rm -f `find . -name core` rm -f `find . -name core`
distclean: clean distclean: clean
$(MAKE) -C locale distclean
$(MAKE) -C lib-src distclean $(MAKE) -C lib-src distclean
$(MAKE) -C locale distclean
test ! -f tests/Makefile || $(MAKE) -C tests distclean test ! -f tests/Makefile || $(MAKE) -C tests distclean
$(MAKE) -C src distclean $(MAKE) -C src distclean