From 499fef3e53ed230ddf1126eb881f579f4e64014f Mon Sep 17 00:00:00 2001 From: nobu Date: Tue, 13 Nov 2007 17:50:33 +0000 Subject: [PATCH] * common.mk (parse.c): dependency also needs vpath. * common.mk (node_name.inc, prelude.c): VPATH in nmake does not work for targets of explicit rules. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@13918 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 7 +++++++ common.mk | 8 ++++---- 2 files changed, 11 insertions(+), 4 deletions(-) diff --git a/ChangeLog b/ChangeLog index baf7242ef9..519752c68b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +Wed Nov 14 02:50:43 2007 Nobuyoshi Nakada + + * common.mk (parse.c): dependency also needs vpath. + + * common.mk (node_name.inc, prelude.c): VPATH in nmake does not + work for targets of explicit rules. + Wed Nov 14 02:11:38 2007 Tanaka Akira * missing/isinf.c (isinf): don't define if the macro is defined. diff --git a/common.mk b/common.mk index db2288c5b7..7a85fb980a 100644 --- a/common.mk +++ b/common.mk @@ -349,9 +349,9 @@ $(RBCONFIG): $(srcdir)/mkconfig.rb config.status $(PREP) PHONY: -{$(VPATH)}parse.c: parse.y +{$(VPATH)}parse.c: {$(VPATH)}parse.y -{$(VPATH)}.y.c: +{$(srcdir)}.y.c: $(YACC) $(YFLAGS) -o y.tab.c $< sed -f $(srcdir)/tool/ytab.sed -e "/^#/s!y\.tab\.c!$@!" y.tab.c > $@ @$(RM) y.tab.c @@ -633,10 +633,10 @@ vm.inc: $(srcdir)/template/vm.inc.tmpl incs: $(INSNS) node_name.inc -{$(VPATH)}node_name.inc: {$(VPATH)}node.h +node_name.inc: {$(VPATH)}node.h $(BASERUBY) -n $(srcdir)/tool/node_name.rb $? > $@ -{$(VPATH)}prelude.c: $(srcdir)/tool/compile_prelude.rb $(srcdir)/prelude.rb +prelude.c: $(srcdir)/tool/compile_prelude.rb $(srcdir)/prelude.rb $(BASERUBY) $(srcdir)/tool/compile_prelude.rb $(srcdir)/prelude.rb $@ ext_prelude.c: $(srcdir)/tool/compile_prelude.rb $(srcdir)/prelude.rb $(srcdir)/gem_prelude.rb $(RBCONFIG)