From: Michal Vaner Date: Fri, 31 Oct 2008 15:27:24 +0000 (+0100) Subject: Build system: Do not clean obj/ucw/autoconf.h X-Git-Tag: holmes-import~219 X-Git-Url: http://mj.ucw.cz/gitweb/?a=commitdiff_plain;h=ee02a2fb2e3f92cffb4726f360f12fd662f42b78;p=libucw.git Build system: Do not clean obj/ucw/autoconf.h It is generated by configure, it should survive make clean. --- diff --git a/build/Maketop b/build/Maketop index 23d1510a..4058e2f2 100644 --- a/build/Maketop +++ b/build/Maketop @@ -63,7 +63,8 @@ dust:: rm -f allocs.tmp cscope.out TAGS clean:: dust - rm -rf `find obj -mindepth 1 -maxdepth 1 -not \( -name config.mk -o -name autoconf.h \)` + rm -rf `find obj/ucw -mindepth 1 -maxdepth 1 -not -name autoconf.h` + rm -rf `find obj -mindepth 1 -maxdepth 1 -not \( -name config.mk -o -name autoconf.h -o -name ucw \)` rm -rf tests run/{bin,lib,include,.tree-stamp} distclean:: clean