summaryrefslogtreecommitdiffstats
path: root/common.mk
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-12-24 08:40:59 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-12-24 08:40:59 +0000
commitd0694e6916fa86da92a3d1a3db78780093d5945e (patch)
treea0686ed85c9ef924f3b23e3fddeebeebb57791a2 /common.mk
parent49fdda42c6845e70323d4fabbb8cfa51f172812a (diff)
downloadruby-d0694e6916fa86da92a3d1a3db78780093d5945e.tar.gz
ruby-d0694e6916fa86da92a3d1a3db78780093d5945e.tar.xz
ruby-d0694e6916fa86da92a3d1a3db78780093d5945e.zip
* common.mk (node_name.inc, miniprelude.c, prelude.c): nmake cannot
handle target vpath in other than implicit rules. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@14590 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'common.mk')
-rw-r--r--common.mk6
1 files changed, 3 insertions, 3 deletions
diff --git a/common.mk b/common.mk
index ff1b3b50e..634fdcaf5 100644
--- a/common.mk
+++ b/common.mk
@@ -645,13 +645,13 @@ srcs: {$(VPATH)}parse.c {$(VPATH)}lex.c $(srcdir)/ext/ripper/ripper.c
incs: $(INSNS) {$(VPATH)}node_name.inc {$(VPATH)}revision.h
-{$(srcdir)}node_name.inc: {$(VPATH)}node.h
+node_name.inc: {$(VPATH)}node.h
$(BASERUBY) -n $(srcdir)/tool/node_name.rb $? > $@
-{$(srcdir)}miniprelude.c: $(srcdir)/tool/compile_prelude.rb $(srcdir)/prelude.rb
+miniprelude.c: $(srcdir)/tool/compile_prelude.rb $(srcdir)/prelude.rb
$(BASERUBY) -I$(srcdir) $(srcdir)/tool/compile_prelude.rb $(srcdir)/prelude.rb $@
-{$(srcdir)}prelude.c: $(srcdir)/tool/compile_prelude.rb $(srcdir)/prelude.rb $(srcdir)/gem_prelude.rb $(RBCONFIG)
+prelude.c: $(srcdir)/tool/compile_prelude.rb $(srcdir)/prelude.rb $(srcdir)/gem_prelude.rb $(RBCONFIG)
$(MINIRUBY) -I$(srcdir) -I$(srcdir)/lib -rrbconfig $(srcdir)/tool/compile_prelude.rb $(srcdir)/prelude.rb $(srcdir)/gem_prelude.rb $@