summaryrefslogtreecommitdiff
path: root/enc/depend
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-04-08 14:56:01 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-04-08 14:56:01 +0000
commita436540271ab1faaeea1644c381bae1bb153d33b (patch)
tree2ce87112c5a9ed9d4d2cb62b7f00991c0b3e5b71 /enc/depend
parent1d42889c4eac6cdaee6f5b6c7beb6510efe7368d (diff)
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
Diffstat (limited to 'enc/depend')
-rw-r--r--enc/depend4
1 files changed, 2 insertions, 2 deletions
diff --git a/enc/depend b/enc/depend
index 99b50b019a..5750a0dc49 100644
--- a/enc/depend
+++ b/enc/depend
@@ -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"