diff options
-rw-r--r-- | lib/util/util.h | 1 | ||||
-rw-r--r-- | source3/Makefile.in | 4 | ||||
-rw-r--r-- | source4/Makefile | 1 |
3 files changed, 4 insertions, 2 deletions
diff --git a/lib/util/util.h b/lib/util/util.h index 4616de9f94..861b6affe5 100644 --- a/lib/util/util.h +++ b/lib/util/util.h @@ -41,7 +41,6 @@ extern const char *panic_action; #include "../lib/util/time.h" #include "../lib/util/data_blob.h" #include "../lib/util/xfile.h" -#include "../lib/util/debug.h" #include "../lib/util/mutex.h" #include "../lib/util/byteorder.h" diff --git a/source3/Makefile.in b/source3/Makefile.in index 09c054a1e3..5f043824fe 100644 --- a/source3/Makefile.in +++ b/source3/Makefile.in @@ -2676,7 +2676,9 @@ clean:: cleanlibs $(MODULES) $(TORTURE_PROGS) \ $(EVERYTHING_PROGS) \ bin/timelimit \ - .headers.stamp */src/*.o + .headers.stamp */src/*.o \ + ../lib/*/*.o \ + ../libcli/*.o ../libcli/*/*.o -rm -rf t_dir include/build_env.h: script/build_env.sh diff --git a/source4/Makefile b/source4/Makefile index 345c16ed6e..273be11e7c 100644 --- a/source4/Makefile +++ b/source4/Makefile @@ -136,6 +136,7 @@ ifneq ($(SKIP_DEP_FILES),yes) clean:: @echo Removing dependency files @find . -name '*.d' -o -name '*.hd' | xargs rm -f + @find ../lib -name '*.d' -o -name '*.hd' | xargs rm -f endif else include $(srcdir)/static_deps.mk |