diff options
author | Stefan Metzmacher <metze@samba.org> | 2007-04-22 10:33:59 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 14:51:21 -0500 |
commit | acedd59f35b688e5545cf63908a94e8846dc3cd7 (patch) | |
tree | 360ec167a7d9031b6d548623568a13f58dcf4847 /source4/build/smb_build | |
parent | ca33b7e675fb054cdd5cdb7c938c1c05cecc231e (diff) | |
download | samba-acedd59f35b688e5545cf63908a94e8846dc3cd7.tar.gz samba-acedd59f35b688e5545cf63908a94e8846dc3cd7.tar.bz2 samba-acedd59f35b688e5545cf63908a94e8846dc3cd7.zip |
r22451: allow
SKIP_DEP_FILES=yes make
metze
(This used to be commit 31fab208f63f0ee3fb1838c9b59421feb5752948)
Diffstat (limited to 'source4/build/smb_build')
-rw-r--r-- | source4/build/smb_build/makefile.pm | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/source4/build/smb_build/makefile.pm b/source4/build/smb_build/makefile.pm index 433fd9658b..1102e85fef 100644 --- a/source4/build/smb_build/makefile.pm +++ b/source4/build/smb_build/makefile.pm @@ -637,10 +637,18 @@ sub write($$) ifneq (\$(MAKECMDGOALS),clean) ifneq (\$(MAKECMDGOALS),distclean) ifneq (\$(MAKECMDGOALS),realdistclean) +ifneq (\$(SKIP_DEP_FILES),yes) -include \$(DEP_FILES) endif endif endif +endif + +ifneq (\$(SKIP_DEP_FILES),yes) +clean:: + \@echo Removing dependency files + \@find . -name '*.d' -o -name '*.hd' | xargs rm -f +endif "); } else { $self->output("include \$(srcdir)/static_deps.mk\n"); |