Alexandre Julliard : makefiles: Output all the dll install rules explicitly for each module.

Alexandre Julliard julliard at winehq.org
Thu Mar 25 11:44:45 CDT 2010


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

Author: Alexandre Julliard <julliard at winehq.org>
Date:   Thu Mar 25 11:15:32 2010 +0100

makefiles: Output all the dll install rules explicitly for each module.

---

 Makefile.in |    6 ++----
 aclocal.m4  |   23 ++++++++++++++++++-----
 configure   |   21 +++++++++++++++++----
 3 files changed, 37 insertions(+), 13 deletions(-)

diff --git a/Makefile.in b/Makefile.in
index c8baf6d..743919c 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -36,15 +36,13 @@ ALL_TOP_DIRS       = @ALL_TOP_DIRS@
 BUILDSUBDIRS = \
 	libs/wine \
 	$(ALL_TOOL_DIRS) \
-	$(ALL_TOP_DIRS) \
-	$(ALL_DLL_DIRS)
+	$(ALL_TOP_DIRS)
 
 # Sub-directories to run make install/uninstall into
 INSTALLSUBDIRS = \
 	libs/wine \
 	$(ALL_TOOL_DIRS) \
-	$(ALL_TOP_DIRS) \
-	$(ALL_DLL_DIRS)
+	$(ALL_TOP_DIRS)
 
 # Sub-directories that don't have a makefile
 EXTRASUBDIRS = dlls libs
diff --git a/aclocal.m4 b/aclocal.m4
index 7a86834..128c813 100644
--- a/aclocal.m4
+++ b/aclocal.m4
@@ -209,14 +209,23 @@ wine_fn_config_dll ()
 
     wine_fn_append_file ALL_DIRS dlls/$ac_dir
     wine_fn_append_rule ALL_MAKEFILE_DEPENDS \
-"dlls/$ac_dir dlls/$ac_dir/__install__ dlls/$ac_dir/__install-lib__ dlls/$ac_dir/__install-dev__: __builddeps__ dlls/$ac_dir/Makefile
-dlls/$ac_dir/__clean__ dlls/$ac_dir/__uninstall__ dlls/$ac_dir: dlls/$ac_dir/Makefile
+"dlls/$ac_dir/__clean__: dlls/$ac_dir/Makefile
 dlls/$ac_dir/Makefile dlls/$ac_dir/__depend__: dlls/$ac_dir/Makefile.in config.status dlls/Makedll.rules \$(MAKEDEP)
 	@./config.status --file dlls/$ac_dir/Makefile && cd dlls/$ac_dir && \$(MAKE) depend"
+
     AS_VAR_IF([$ac_enable],[no],
               dnl enable_win16 is special in that it disables import libs too
               [test "$ac_enable" != enable_win16 || return 0],
-              [wine_fn_append_file ALL_DLL_DIRS dlls/$ac_dir])
+              [wine_fn_append_file ALL_DLL_DIRS dlls/$ac_dir
+               wine_fn_append_rule ALL_MAKEFILE_DEPENDS \
+"all: dlls/$ac_dir
+dlls/$ac_dir: dlls/$ac_dir/Makefile __builddeps__ 
+install:: dlls/$ac_dir/Makefile __builddeps__ 
+	@cd dlls/$ac_dir && \$(MAKE) install
+install-lib:: dlls/$ac_dir/Makefile __builddeps__ 
+	@cd dlls/$ac_dir && \$(MAKE) install-lib
+uninstall:: dlls/$ac_dir/Makefile
+	@cd dlls/$ac_dir && \$(MAKE) uninstall"])
 
     if test -n "$ac_implibsrc"
     then
@@ -227,14 +236,18 @@ $ac_file.$IMPLIBEXT $ac_file.$STATIC_IMPLIBEXT $ac_file.cross.a: $ac_deps
 $ac_file.def: dlls/$ac_dir/$ac_dir.spec dlls/$ac_dir/Makefile
 	@cd dlls/$ac_dir && \$(MAKE) \`basename \$[@]\`
 $ac_file.$STATIC_IMPLIBEXT $ac_file.cross.a: dlls/$ac_dir/Makefile dummy
-	@cd dlls/$ac_dir && \$(MAKE) \`basename \$[@]\`"
+	@cd dlls/$ac_dir && \$(MAKE) \`basename \$[@]\`
+install-dev:: dlls/$ac_dir/Makefile __builddeps__ 
+	@cd dlls/$ac_dir && \$(MAKE) install-dev"
     elif test -n "$ac_implib"
     then
         wine_fn_append_rule ALL_MAKEFILE_DEPENDS \
 "__builddeps__: $ac_file.$IMPLIBEXT
 __buildcrossdeps__: $ac_file.cross.a
 $ac_file.$IMPLIBEXT $ac_file.cross.a: dlls/$ac_dir/$ac_dir.spec dlls/$ac_dir/Makefile $ac_deps
-	@cd dlls/$ac_dir && \$(MAKE) \`basename \$[@]\`"
+	@cd dlls/$ac_dir && \$(MAKE) \`basename \$[@]\`
+install-dev:: dlls/$ac_dir/Makefile __builddeps__ 
+	@cd dlls/$ac_dir && \$(MAKE) install-dev"
 
         if test "$ac_dir" != "$ac_implib"
         then
diff --git a/configure b/configure
index 15a589e..3d6f4f6 100755
--- a/configure
+++ b/configure
@@ -13932,15 +13932,24 @@ wine_fn_config_dll ()
 
     wine_fn_append_file ALL_DIRS dlls/$ac_dir
     wine_fn_append_rule ALL_MAKEFILE_DEPENDS \
-"dlls/$ac_dir dlls/$ac_dir/__install__ dlls/$ac_dir/__install-lib__ dlls/$ac_dir/__install-dev__: __builddeps__ dlls/$ac_dir/Makefile
-dlls/$ac_dir/__clean__ dlls/$ac_dir/__uninstall__ dlls/$ac_dir: dlls/$ac_dir/Makefile
+"dlls/$ac_dir/__clean__: dlls/$ac_dir/Makefile
 dlls/$ac_dir/Makefile dlls/$ac_dir/__depend__: dlls/$ac_dir/Makefile.in config.status dlls/Makedll.rules \$(MAKEDEP)
 	@./config.status --file dlls/$ac_dir/Makefile && cd dlls/$ac_dir && \$(MAKE) depend"
+
     eval as_val=\$$ac_enable
    if test "x$as_val" = x""no; then :
                 test "$ac_enable" != enable_win16 || return 0
 else
   wine_fn_append_file ALL_DLL_DIRS dlls/$ac_dir
+               wine_fn_append_rule ALL_MAKEFILE_DEPENDS \
+"all: dlls/$ac_dir
+dlls/$ac_dir: dlls/$ac_dir/Makefile __builddeps__
+install:: dlls/$ac_dir/Makefile __builddeps__
+	@cd dlls/$ac_dir && \$(MAKE) install
+install-lib:: dlls/$ac_dir/Makefile __builddeps__
+	@cd dlls/$ac_dir && \$(MAKE) install-lib
+uninstall:: dlls/$ac_dir/Makefile
+	@cd dlls/$ac_dir && \$(MAKE) uninstall"
 fi
 
     if test -n "$ac_implibsrc"
@@ -13952,14 +13961,18 @@ $ac_file.$IMPLIBEXT $ac_file.$STATIC_IMPLIBEXT $ac_file.cross.a: $ac_deps
 $ac_file.def: dlls/$ac_dir/$ac_dir.spec dlls/$ac_dir/Makefile
 	@cd dlls/$ac_dir && \$(MAKE) \`basename \$@\`
 $ac_file.$STATIC_IMPLIBEXT $ac_file.cross.a: dlls/$ac_dir/Makefile dummy
-	@cd dlls/$ac_dir && \$(MAKE) \`basename \$@\`"
+	@cd dlls/$ac_dir && \$(MAKE) \`basename \$@\`
+install-dev:: dlls/$ac_dir/Makefile __builddeps__
+	@cd dlls/$ac_dir && \$(MAKE) install-dev"
     elif test -n "$ac_implib"
     then
         wine_fn_append_rule ALL_MAKEFILE_DEPENDS \
 "__builddeps__: $ac_file.$IMPLIBEXT
 __buildcrossdeps__: $ac_file.cross.a
 $ac_file.$IMPLIBEXT $ac_file.cross.a: dlls/$ac_dir/$ac_dir.spec dlls/$ac_dir/Makefile $ac_deps
-	@cd dlls/$ac_dir && \$(MAKE) \`basename \$@\`"
+	@cd dlls/$ac_dir && \$(MAKE) \`basename \$@\`
+install-dev:: dlls/$ac_dir/Makefile __builddeps__
+	@cd dlls/$ac_dir && \$(MAKE) install-dev"
 
         if test "$ac_dir" != "$ac_implib"
         then




More information about the wine-cvs mailing list