diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2008-09-24 14:49:12 +0200 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2008-10-11 21:33:15 +0200 |
commit | 5c44ed69548c4a4d753b54f72dc41212e2c7b612 (patch) | |
tree | 4490880c8eb9be36535e07591bc5bc2d9a136e3b | |
parent | a19719ccea2d63d42a35d30f91fe112d2a3db8c7 (diff) | |
download | samba-5c44ed69548c4a4d753b54f72dc41212e2c7b612.tar.gz samba-5c44ed69548c4a4d753b54f72dc41212e2c7b612.tar.bz2 samba-5c44ed69548c4a4d753b54f72dc41212e2c7b612.zip |
Clean up properly.
-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 |