* 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
This commit is contained in:
parent
1a6e152000
commit
499fef3e53
@ -1,3 +1,10 @@
|
|||||||
|
Wed Nov 14 02:50:43 2007 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||||
|
|
||||||
|
* 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 <akr@fsij.org>
|
Wed Nov 14 02:11:38 2007 Tanaka Akira <akr@fsij.org>
|
||||||
|
|
||||||
* missing/isinf.c (isinf): don't define if the macro is defined.
|
* missing/isinf.c (isinf): don't define if the macro is defined.
|
||||||
|
@ -349,9 +349,9 @@ $(RBCONFIG): $(srcdir)/mkconfig.rb config.status $(PREP)
|
|||||||
|
|
||||||
PHONY:
|
PHONY:
|
||||||
|
|
||||||
{$(VPATH)}parse.c: parse.y
|
{$(VPATH)}parse.c: {$(VPATH)}parse.y
|
||||||
|
|
||||||
{$(VPATH)}.y.c:
|
{$(srcdir)}.y.c:
|
||||||
$(YACC) $(YFLAGS) -o y.tab.c $<
|
$(YACC) $(YFLAGS) -o y.tab.c $<
|
||||||
sed -f $(srcdir)/tool/ytab.sed -e "/^#/s!y\.tab\.c!$@!" y.tab.c > $@
|
sed -f $(srcdir)/tool/ytab.sed -e "/^#/s!y\.tab\.c!$@!" y.tab.c > $@
|
||||||
@$(RM) y.tab.c
|
@$(RM) y.tab.c
|
||||||
@ -633,10 +633,10 @@ vm.inc: $(srcdir)/template/vm.inc.tmpl
|
|||||||
|
|
||||||
incs: $(INSNS) node_name.inc
|
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 $? > $@
|
$(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 $@
|
$(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)
|
ext_prelude.c: $(srcdir)/tool/compile_prelude.rb $(srcdir)/prelude.rb $(srcdir)/gem_prelude.rb $(RBCONFIG)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user