From ee02a2fb2e3f92cffb4726f360f12fd662f42b78 Mon Sep 17 00:00:00 2001 From: Michal Vaner Date: Fri, 31 Oct 2008 16:27:24 +0100 Subject: [PATCH] Build system: Do not clean obj/ucw/autoconf.h It is generated by configure, it should survive make clean. --- build/Maketop | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 -- 2.39.5