From: Patrik Gornicz Date: Sun, 23 Aug 2009 20:14:37 +0000 (-0400) Subject: removed the cleanall command, clean now cleans bin objs and deps X-Git-Tag: libbear-premerge~10 X-Git-Url: http://gitweb.pgornicz.com/?a=commitdiff_plain;h=aff142e7d1abf4fb1814dc99017a5425976380b1;p=libbear.git 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? --- 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