From: Martin Mares Date: Thu, 19 Jul 2007 11:03:46 +0000 (+0200) Subject: `make clean' no longer unconfigures the package, it only deletes X-Git-Tag: holmes-import~506^2~36 X-Git-Url: http://mj.ucw.cz/gitweb/?a=commitdiff_plain;h=d354ca2f9d74b295484d96eb6ea5fd7a3323284c;p=libucw.git `make clean' no longer unconfigures the package, it only deletes all object files. This fulfils an old wish by Tom Valla. --- diff --git a/build/Maketop b/build/Maketop index 8c005b92..e984f204 100644 --- a/build/Maketop +++ b/build/Maketop @@ -59,10 +59,11 @@ dust:: rm -f allocs.tmp cscope.out TAGS clean:: dust - rm -rf obj tests run/{bin,lib,include,.tree-stamp} + rm -rf `find obj -mindepth 1 -maxdepth 1 -not \( -name config.mk -o -name autoconf.h \)` + rm -rf tests run/{bin,lib,include,.tree-stamp} distclean:: clean - rm -rf run + rm -rf obj run testclean:: rm -f `find obj -name "*.test"`