From 274115f97f779065e32e5a94ac1db14ce0d67bff Mon Sep 17 00:00:00 2001 From: Alexandre Julliard Date: Mon, 2 Apr 2007 12:47:13 +0200 Subject: [PATCH] make_makefiles: Add the .INIT/.BEGIN rules for the main makefile. --- tools/make_makefiles | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tools/make_makefiles b/tools/make_makefiles index f17dc946ce6..90f92208edf 100755 --- a/tools/make_makefiles +++ b/tools/make_makefiles @@ -299,7 +299,9 @@ sub update_makefiles(@) push @lines, "ALL_MAKEFILES = \\\n\t"; push @lines, join (" \\\n\t", @targets ), "\n\n"; push @lines, "Makefile \$(ALL_MAKEFILES): config.status\n"; - push @lines, "\t\@./config.status \$\@\n\n"; + push @lines, "\t\@./config.status \$\@\n"; + push @lines, ".INIT: Makefile\n"; + push @lines, ".BEGIN: Makefile\n\n"; push @lines, "\$(RECURSE_TARGETS) \$(MAKEDEP): \$(ALL_MAKEFILES)\n\n"; push @lines, "distclean::\n"; push @lines, "\t\$(RM) Makefile \$(ALL_MAKEFILES)\n\n"; -- 2.11.4.GIT