diff options
author | Günther Deschner <gd@samba.org> | 2009-11-19 13:39:24 +0100 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2009-11-19 13:48:33 +0100 |
commit | bf45447aaa35ee3b26fe76af3c73a77d7b10c2ac (patch) | |
tree | a17842144ee4ee56fd33b48992617166758de61a | |
parent | 3a8393c8aaead601b22548ab06207b18e14ad7d8 (diff) | |
download | samba-bf45447aaa35ee3b26fe76af3c73a77d7b10c2ac.tar.gz samba-bf45447aaa35ee3b26fe76af3c73a77d7b10c2ac.tar.bz2 samba-bf45447aaa35ee3b26fe76af3c73a77d7b10c2ac.zip |
s3-build: make sure to remove libds and client object files on make clean.
Guenther
-rw-r--r-- | source3/Makefile.in | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/source3/Makefile.in b/source3/Makefile.in index cb10a7c6f5..2febd9e8d2 100644 --- a/source3/Makefile.in +++ b/source3/Makefile.in @@ -3084,7 +3084,8 @@ cleanlibs:: -rm -f ../lib/*/*.o ../lib/*/*/*.o \ ../libcli/*.o ../libcli/*/*.o ../libcli/*/*/*.o \ ../librpc/*/*.o \ - ../libgpo/*.o ../libgpo/*/*.o + ../libgpo/*.o ../libgpo/*/*.o \ + ../libds/*.o ../libds/*/*.o clean:: cleanlibs -rm -f include/build_env.h @@ -3094,6 +3095,7 @@ clean:: cleanlibs */*.o */*/*.o */*/*/*.o \ ../testsuite/*/*.o \ ../nsswitch/*.o ../nsswitch/*/*.o ../nsswitch/*.@SHLIBEXT@ \ + ../client/*.o \ */*.@SHLIBEXT@ */*/*.@SHLIBEXT@ */*/*/*.@SHLIBEXT@ \ $(TOPFILES) $(BIN_PROGS) $(SBIN_PROGS) $(ROOT_SBIN_PROGS) \ $(MODULES) $(TORTURE_PROGS) \ |