[WINEDOCS] Add dependency on Make.rules

Francois Gouget fgouget at codeweavers.com
Fri May 13 05:28:21 CDT 2005


Actually I'd be of the opinion that this dependency should be in 
Make.rules.in itself but Alexandre was against it when I proposed the 
change for Wine. Since this dependency is there only in the top-level 
Makefile, only a make in the top-level directory will notice the problem.


Changelog:

  * Makefile.in

    Francois Gouget <fgouget at codeweavers.com>
    Make 'all' depend on Make.rules.
    Move the Make.rules rule to a 'Manual dependencies' section.

-- 
Francois Gouget
fgouget at codeweavers.com

-------------- next part --------------
Index: Makefile.in
===================================================================
RCS file: /cvsroot/wine/docs/Makefile.in,v
retrieving revision 1.1.1.1
diff -u -p -r1.1.1.1 Makefile.in
--- Makefile.in	9 May 2005 05:31:08 -0000	1.1.1.1
+++ Makefile.in	13 May 2005 10:17:58 -0000
@@ -1,15 +1,10 @@
-
 SUBDIRS = \
 	en
 
-all: doc
+all: Make.rules doc
 
 @MAKE_RULES@
 
-Make.rules: Make.rules.in configure
-	@echo $? is newer than 'Make.rules', please rerun ./configure!
-	@exit 1
-
 doc: html pdf ps txt
 
 html:: $(SUBDIRS:%=%/__html__)
@@ -22,3 +17,8 @@ distclean: clean
 	$(RM) -r autom4te.cache
 	$(RM) `find . \( -name Makefile -o -size 0 \) -print`
 
+# Manual dependencies
+
+Make.rules: Make.rules.in configure
+	@echo $? is newer than '$@', please rerun ./configure!
+	@exit 1


More information about the wine-patches mailing list