Alexandre Julliard : make_makefiles: Add the .INIT/. BEGIN rules for the main makefile.

Alexandre Julliard julliard at wine.codeweavers.com
Mon Apr 2 06:23:22 CDT 2007


Module: wine
Branch: master
Commit: 274115f97f779065e32e5a94ac1db14ce0d67bff
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=274115f97f779065e32e5a94ac1db14ce0d67bff

Author: Alexandre Julliard <julliard at winehq.org>
Date:   Mon Apr  2 12:47:13 2007 +0200

make_makefiles: Add the .INIT/.BEGIN rules for the main makefile.

---

 tools/make_makefiles |    4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)

diff --git a/tools/make_makefiles b/tools/make_makefiles
index f17dc94..90f9220 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";




More information about the wine-cvs mailing list