Alexandre Julliard : makefiles: Add a __tooldeps__ fake dependency to rebuild only the tools.

Alexandre Julliard julliard at winehq.org
Thu Feb 11 11:08:30 CST 2010


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

Author: Alexandre Julliard <julliard at winehq.org>
Date:   Thu Feb 11 12:53:53 2010 +0100

makefiles: Add a __tooldeps__ fake dependency to rebuild only the tools.

---

 Makefile.in |    7 ++++---
 1 files changed, 4 insertions(+), 3 deletions(-)

diff --git a/Makefile.in b/Makefile.in
index 059fb6c..8aa498f 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -198,9 +198,10 @@ implib: $(ALL_STATICLIB_DIRS) $(IMPORT_LIBS)
 # Dependencies between directories
 
 # dependencies needed to build any dll or program
-__builddeps__: libs/port libs/wine libs/wpp $(ALL_TOOL_DIRS) include $(ALL_STATICLIB_DIRS) $(IMPORT_LIBS)
-__buildcrossdeps__: libs/port libs/wine $(ALL_TOOL_DIRS) include $(STATIC_LIBS:.a=.cross.a) $(IMPORT_LIBS:.def=.cross.a)
-.PHONY: __builddeps__ __buildcrossdeps__
+__tooldeps__: libs/port libs/wine libs/wpp $(ALL_TOOL_DIRS)
+__builddeps__: __tooldeps__ include $(ALL_STATICLIB_DIRS) $(IMPORT_LIBS)
+__buildcrossdeps__: __tooldeps__ include $(STATIC_LIBS:.a=.cross.a) $(IMPORT_LIBS:.def=.cross.a)
+.PHONY: __tooldeps__ __builddeps__ __buildcrossdeps__
 
 loader server: libs/port libs/wine tools
 fonts: tools




More information about the wine-cvs mailing list