diff options
author | Andrew Tridgell <tridge@samba.org> | 2005-06-28 02:49:35 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:18:55 -0500 |
commit | 8dde165d0f95858a73f4b000196f5a43caeb3526 (patch) | |
tree | 6b0686cf17a2d5aab4b0a676b414f684d05c9c44 /source4/build/smb_build | |
parent | 2d95bf6da6b25ca27f923d96e01f27dfffe3e5bf (diff) | |
download | samba-8dde165d0f95858a73f4b000196f5a43caeb3526.tar.gz samba-8dde165d0f95858a73f4b000196f5a43caeb3526.tar.bz2 samba-8dde165d0f95858a73f4b000196f5a43caeb3526.zip |
r7977: split up 'make clean' a little more as it is overflowing the command line size limits
on some platforms
(This used to be commit e18dc32074fe56d7ccbcf9cc621a4b88abe957b1)
Diffstat (limited to 'source4/build/smb_build')
-rw-r--r-- | source4/build/smb_build/makefile.pm | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/source4/build/smb_build/makefile.pm b/source4/build/smb_build/makefile.pm index 34fa0c9f65..a9ac1d76b1 100644 --- a/source4/build/smb_build/makefile.pm +++ b/source4/build/smb_build/makefile.pm @@ -545,8 +545,12 @@ proto_test: @[ -f $(builddir)/include/proto.h ] || $(MAKE) proto clean: delheaders - @echo Removing objects and binaries - @-rm -f $(_ALL_OBJS_OBJS) bin/* bin/.*_* + @echo Removing objects + @-rm -f $(_ALL_OBJS_OBJS) + @echo Removing binaries + @-rm -f bin/* + @echo Removing dummy targets + @-rm -f bin/.*_* @echo Removing generated files @-rm -rf librpc/gen_* |