mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* common.mk (ripper.c): exec can't work on Windows.
* ext/ripper/depend (.SUFFIXES): nmake doesn't have .y by default. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@22591 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
11abc445dd
commit
ff9bfed83d
4 changed files with 9 additions and 2 deletions
|
@ -1,4 +1,8 @@
|
||||||
Tue Feb 24 17:54:45 2009 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
Tue Feb 24 17:58:07 2009 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||||
|
|
||||||
|
* common.mk (ripper.c): exec can't work on Windows.
|
||||||
|
|
||||||
|
* ext/ripper/depend (.SUFFIXES): nmake doesn't have .y by default.
|
||||||
|
|
||||||
* Makefile.in (id.h): overwrites unconditinally.
|
* Makefile.in (id.h): overwrites unconditinally.
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
SHELL = /bin/sh
|
SHELL = /bin/sh
|
||||||
NULLCMD = :
|
NULLCMD = :
|
||||||
|
exec = exec
|
||||||
|
|
||||||
#### Start of system configuration section. ####
|
#### Start of system configuration section. ####
|
||||||
|
|
||||||
|
|
|
@ -681,7 +681,7 @@ $(srcdir)/revision.h: $(srcdir)/version.h $(srcdir)/ChangeLog $(srcdir)/tool/fil
|
||||||
@$(IFCHANGE) "$@" "$@.tmp"
|
@$(IFCHANGE) "$@" "$@.tmp"
|
||||||
|
|
||||||
$(srcdir)/ext/ripper/ripper.c:
|
$(srcdir)/ext/ripper/ripper.c:
|
||||||
cd $(srcdir)/ext/ripper && exec $(MAKE) -f depend $(MFLAGS) top_srcdir=../.. srcdir=.
|
cd $(srcdir)/ext/ripper && $(exec) $(MAKE) -f depend $(MFLAGS) top_srcdir=../.. srcdir=.
|
||||||
|
|
||||||
##
|
##
|
||||||
|
|
||||||
|
|
|
@ -3,6 +3,8 @@ SRC1 = $(top_srcdir)/parse.y
|
||||||
SRC2 = $(srcdir)/eventids2.c
|
SRC2 = $(srcdir)/eventids2.c
|
||||||
BISON = bison
|
BISON = bison
|
||||||
|
|
||||||
|
.SUFFIXES: .y
|
||||||
|
|
||||||
src: ripper.c eventids1.c eventids2table.c
|
src: ripper.c eventids1.c eventids2table.c
|
||||||
|
|
||||||
ripper.o: ripper.c lex.c eventids1.c eventids2.c eventids2table.c \
|
ripper.o: ripper.c lex.c eventids1.c eventids2.c eventids2table.c \
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue