mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
ext/depend: fix dependency for nmake
* ext/depend (ENCOBJS, TRANSOBJS): use explicit path to ruby.h for nmake. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@40187 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
1d42889c4e
commit
a436540271
2 changed files with 6 additions and 3 deletions
|
@ -1,4 +1,7 @@
|
|||
Mon Apr 8 23:09:34 2013 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
Mon Apr 8 23:55:53 2013 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* ext/depend (ENCOBJS, TRANSOBJS): use explicit path to ruby.h for
|
||||
nmake.
|
||||
|
||||
* ext/depend (ENCOBJS, TRANSOBJS): fix header dependency, VPATH has
|
||||
$(srcdir)/include/ruby but not $(srcdir)/include, so cannot find out
|
||||
|
|
|
@ -83,13 +83,13 @@ srcs: $(TRANSCSRCS)
|
|||
% unless ENCS.empty? or TRANS.empty?
|
||||
|
||||
% unless ENCS.empty?
|
||||
$(ENCOBJS): ../ruby.h regenc.h oniguruma.h config.h defines.h ruby.h missing.h subst.h intern.h st.h encoding.h
|
||||
$(ENCOBJS): $(hdrdir)/ruby.h regenc.h oniguruma.h config.h defines.h ruby.h missing.h subst.h intern.h st.h encoding.h
|
||||
% end
|
||||
% ENC_DEPS.each do |e, deps|
|
||||
enc/<%=e%>.$(OBJEXT): <%=deps.map {|n| rule_subst % n}.join(' ')%>
|
||||
% end
|
||||
% unless TRANS.empty?
|
||||
$(TRANSOBJS): ../ruby.h ruby.h intern.h config.h defines.h missing.h encoding.h oniguruma.h st.h transcode_data.h subst.h encoding.h
|
||||
$(TRANSOBJS): $(hdrdir)/ruby.h ruby.h intern.h config.h defines.h missing.h encoding.h oniguruma.h st.h transcode_data.h subst.h encoding.h
|
||||
% end
|
||||
% ATRANS.each do |e|
|
||||
% src = "#{e}.trans"
|
||||
|
|
Loading…
Reference in a new issue