diff options
-rw-r--r-- | source4/build/smb_build/makefile.pm | 8 | ||||
-rw-r--r-- | source4/main.mk | 4 |
2 files changed, 8 insertions, 4 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"); diff --git a/source4/main.mk b/source4/main.mk index 4084d7ba4b..88eebe963a 100644 --- a/source4/main.mk +++ b/source4/main.mk @@ -421,7 +421,3 @@ dist:: distclean idl_full manpages configure configure: ./autogen.sh - -clean:: - @echo Removing dependency files - @find . -name \*.d -o -name \*.hd | xargs rm -f |