Module: wine Branch: master Commit: 1431e24feeb20dac8a2e791f63cb0a7d4c32c1bf URL: http://source.winehq.org/git/wine.git/?a=commit;h=1431e24feeb20dac8a2e791f63...
Author: Alexandre Julliard julliard@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