mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* common.mk, enc/depend (enc, trans): targets for sources.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19799 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
483225e521
commit
7485e91f76
3 changed files with 17 additions and 3 deletions
|
@ -1,3 +1,11 @@
|
|||
Thu Oct 16 14:34:16 2008 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* common.mk, enc/depend (enc, trans): targets for sources.
|
||||
|
||||
Thu Oct 16 14:30:30 2008 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* instruby.rb (lib): installs all files other than README etc.
|
||||
|
||||
Thu Oct 16 06:20:36 2008 Yukihiro Matsumoto <matz@ruby-lang.org>
|
||||
|
||||
* test/ruby/test_transcode.rb (TestTranscode#test_errors):
|
||||
|
|
|
@ -384,8 +384,11 @@ $(RBCONFIG): $(srcdir)/mkconfig.rb config.status $(PREP)
|
|||
-install_name=$(RUBY_INSTALL_NAME) \
|
||||
-so_name=$(RUBY_SO_NAME) rbconfig.rb
|
||||
|
||||
encs: $(ENC_MK) $(LIBRUBY) $(PREP) transdb.h
|
||||
$(MAKE) -f $(ENC_MK) MINIRUBY="$(MINIRUBY)" $(MFLAGS)
|
||||
encs enc trans: $(ENC_MK) $(LIBRUBY) $(PREP)
|
||||
$(MAKE) -f $(ENC_MK) RUBY="$(MINIRUBY)" MINIRUBY="$(MINIRUBY)" $(MFLAGS) $@
|
||||
|
||||
enc: {$(VPATH)}encdb.h
|
||||
trans: {$(VPATH)}transdb.h
|
||||
|
||||
$(ENC_MK): $(srcdir)/enc/make_encmake.rb $(srcdir)/enc/Makefile.in $(srcdir)/enc/depend \
|
||||
$(srcdir)/lib/mkmf.rb $(RBCONFIG)
|
||||
|
|
|
@ -62,7 +62,10 @@ TRANSCLEANOBJS = <%=cleanobjs.map {|clean|
|
|||
clean.gsub(/\$\*(\.\w+)?/) {"$(TRANSOBJS#{$1 ? ":.#{CONFIG["OBJEXT"]}=#{$1}" : ""})"}
|
||||
}.join(" ")%>
|
||||
|
||||
all: $(ENCSOS) $(TRANSSOS)
|
||||
encs: all
|
||||
all: enc trans
|
||||
enc: $(ENCSOS)
|
||||
trans: $(TRANSSOS)
|
||||
|
||||
srcs: $(TRANSCSRCS)
|
||||
|
||||
|
|
Loading…
Reference in a new issue