diff options
author | Tim Prouty <tprouty@samba.org> | 2008-10-08 11:06:18 -0700 |
---|---|---|
committer | Tim Prouty <tprouty@samba.org> | 2008-10-09 19:13:32 -0700 |
commit | 10f65cc4ca5a48b6f4dc8c4de23e59628b6f95b2 (patch) | |
tree | 6f6e33152f32a5a9ebb34303808a1f0330b570fc | |
parent | 9b331df4124118f3957c281023fe8dd11edd44be (diff) | |
download | samba-10f65cc4ca5a48b6f4dc8c4de23e59628b6f95b2.tar.gz samba-10f65cc4ca5a48b6f4dc8c4de23e59628b6f95b2.tar.bz2 samba-10f65cc4ca5a48b6f4dc8c4de23e59628b6f95b2.zip |
remove common lib object files on make cleanlib from source3
source4 already cleans up the object files on make clean. This patch
modifies source3 to also do this.
-rw-r--r-- | source3/Makefile.in | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/source3/Makefile.in b/source3/Makefile.in index 18581badea..175dcb36be 100644 --- a/source3/Makefile.in +++ b/source3/Makefile.in @@ -2660,6 +2660,10 @@ uninstallpammodules:: # Toplevel clean files TOPFILES=dynconfig.o +cleanlibs:: + -rm -f ../lib/*/*.o ../lib/*/*/*.o \ + ../libcli/*.o ../libcli/*/*.o + clean:: cleanlibs -rm -f include/build_env.h -rm -f smbd/build_options.c |