From aff142e7d1abf4fb1814dc99017a5425976380b1 Mon Sep 17 00:00:00 2001 From: Patrik Gornicz Date: Sun, 23 Aug 2009 16:14:37 -0400 Subject: [PATCH] removed the cleanall command, clean now cleans bin objs and deps This was done because the parallel deps creation with objs will create the deps even when not cleaned. So why not clean everything with clean? --- Makefile.d/cleanrules.mk | 7 +------ targets.mk | 6 +----- targets.txt | 4 ---- 3 files changed, 2 insertions(+), 15 deletions(-) diff --git a/Makefile.d/cleanrules.mk b/Makefile.d/cleanrules.mk index 7c838d2..a609022 100644 --- a/Makefile.d/cleanrules.mk +++ b/Makefile.d/cleanrules.mk @@ -27,10 +27,5 @@ cleandeps-$T: L_CLEANCMDS += clean-$T clean: clean-$T .PHONY: clean-$T -clean-$T: cleanobjs-$T cleanbin-$T - -L_CLEANCMDS += cleanall-$T -cleanall: cleanall-$T -.PHONY: cleanall-$T -cleanall-$T: cleanbin-$T cleanobjs-$T cleandeps-$T +clean-$T: cleanbin-$T cleanobjs-$T cleandeps-$T diff --git a/targets.mk b/targets.mk index 9724021..2732ee3 100644 --- a/targets.mk +++ b/targets.mk @@ -51,11 +51,7 @@ cleandeps: L_CLEANCMDS += clean .PHONY: clean -clean: cleanobjs - -L_CLEANCMDS += cleanall -.PHONY: cleanall -cleanall: cleanbin cleanobjs cleandeps +clean: cleanbin cleanobjs cleandeps default: ${G_ALL_LIB} diff --git a/targets.txt b/targets.txt index 7e1384b..f6281c4 100644 --- a/targets.txt +++ b/targets.txt @@ -9,10 +9,6 @@ clean clean-lib clean-physics clean-tests -cleanall -cleanall-lib -cleanall-physics -cleanall-tests cleanbin cleanbin-lib cleanbin-physics -- 2.10.2