mirror of
https://github.com/gnustep/tools-make.git
synced 2025-04-23 06:10:50 +00:00
Patch for more efficient distclean
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/tools/make/trunk@4905 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
a21ceba53f
commit
b805ec4425
2 changed files with 10 additions and 0 deletions
|
@ -1,3 +1,9 @@
|
|||
Fri Sep 17 1999 Nicola Pero <n.pero@mi.flashnet.it>
|
||||
|
||||
* rules.make (distclean): added test, so that distclean invokes
|
||||
clean only in the top dir. This avoids having 'make clean'
|
||||
executed uselessly a lot of times in subdirs.
|
||||
|
||||
1999-09-14 Adam Fedor <fedor@gnu.org>
|
||||
|
||||
* common.make, config.make.in: Remove -o from LDFLAGS.
|
||||
|
|
|
@ -60,7 +60,11 @@ uninstall:: before-uninstall internal-uninstall after-uninstall
|
|||
|
||||
clean:: before-clean internal-clean after-clean
|
||||
|
||||
ifeq ($(MAKELEVEL),0)
|
||||
distclean:: clean before-distclean internal-distclean after-distclean
|
||||
else
|
||||
distclean:: before-distclean internal-distclean after-distclean
|
||||
endif
|
||||
|
||||
check:: before-check internal-check after-check
|
||||
|
||||
|
|
Loading…
Reference in a new issue