Alexandre Julliard : make_makefiles: Add a target to build only the test directories.

Alexandre Julliard julliard at winehq.org
Wed Nov 19 08:35:24 CST 2008


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

Author: Alexandre Julliard <julliard at winehq.org>
Date:   Wed Nov 19 15:31:44 2008 +0100

make_makefiles: Add a target to build only the test directories.

---

 dlls/Makefile.in     |    4 +++-
 tools/make_makefiles |    3 ++-
 2 files changed, 5 insertions(+), 2 deletions(-)

diff --git a/dlls/Makefile.in b/dlls/Makefile.in
index a5fcd6f..794905a 100644
--- a/dlls/Makefile.in
+++ b/dlls/Makefile.in
@@ -461,7 +461,9 @@ $(TESTSUBDIRS:%=%/__crosstest__): $(CROSS_IMPLIBS)
 
 implib: $(IMPORT_LIBS)
 
-.PHONY: implib
+testsubdirs: $(TESTSUBDIRS)
+
+.PHONY: implib testsubdirs
 
 activeds/libactiveds.def activeds/libactiveds.a: activeds/activeds.spec $(WINEBUILD)
 	@cd activeds && $(MAKE) `basename $@`
diff --git a/tools/make_makefiles b/tools/make_makefiles
index bd0f255..ec65703 100755
--- a/tools/make_makefiles
+++ b/tools/make_makefiles
@@ -413,7 +413,8 @@ sub update_dlls(@)
     $text .= "\n\n";
     $text .= "\$(TESTSUBDIRS:%=%/__crosstest__): \$(CROSS_IMPLIBS)\n\n";
     $text .= "implib: \$(IMPORT_LIBS)\n\n";
-    $text .= ".PHONY: implib\n\n";
+    $text .= "testsubdirs: \$(TESTSUBDIRS)\n\n";
+    $text .= ".PHONY: implib testsubdirs\n\n";
 
     foreach my $mod (sort keys %importlibs)
     {




More information about the wine-cvs mailing list