mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* win32/Makefile.sub (clean-enc): pass V to inferior make.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@30420 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
055e4558bd
commit
0dfd81cb23
4 changed files with 21 additions and 17 deletions
|
@ -1,3 +1,7 @@
|
||||||
|
Wed Dec 29 20:27:32 2010 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||||
|
|
||||||
|
* win32/Makefile.sub (clean-enc): pass V to inferior make.
|
||||||
|
|
||||||
Wed Dec 29 18:23:46 2010 NAKAMURA Usaku <usa@ruby-lang.org>
|
Wed Dec 29 18:23:46 2010 NAKAMURA Usaku <usa@ruby-lang.org>
|
||||||
|
|
||||||
* re.c (rb_reg_expr_str): need to escape if the coderange is invalid.
|
* re.c (rb_reg_expr_str): need to escape if the coderange is invalid.
|
||||||
|
|
|
@ -68,5 +68,5 @@ make-workdir:
|
||||||
clean:
|
clean:
|
||||||
|
|
||||||
distclean: clean
|
distclean: clean
|
||||||
@$(RM) enc.mk
|
$(Q)$(RM) enc.mk
|
||||||
realclean: distclean clean-srcs
|
realclean: distclean clean-srcs
|
||||||
|
|
14
enc/depend
14
enc/depend
|
@ -142,16 +142,16 @@ enc/trans/transdb.$(OBJEXT): transdb.h
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
% %w[$(ENCSOS) $(ENCOBJS) $(ENCCLEANOBJS) $(ENCCLEANLIBS) $(TRANSSOS) $(TRANSOBJS) $(TRANSCLEANOBJS) $(TRANSCLEANLIBS)].each do |clean|
|
% %w[$(ENCSOS) $(ENCOBJS) $(ENCCLEANOBJS) $(ENCCLEANLIBS) $(TRANSSOS) $(TRANSOBJS) $(TRANSCLEANOBJS) $(TRANSCLEANLIBS)].each do |clean|
|
||||||
@$(RM) <%=pathrep[clean]%>
|
$(Q)$(RM) <%=pathrep[clean]%>
|
||||||
% end
|
% end
|
||||||
% @ignore_error = $nmake ? '' : ' 2> /dev/null || true'
|
% @ignore_error = $nmake ? '' : ' 2> /dev/null || true'
|
||||||
% workdirs.reverse_each do|dir|
|
% workdirs.reverse_each do|dir|
|
||||||
@-$(RMDIR) <%=pathrep[dir]%><%=@ignore_error%>
|
-$(Q)$(RMDIR) <%=pathrep[dir]%><%=@ignore_error%>
|
||||||
% end
|
% end
|
||||||
|
|
||||||
clean-srcs:
|
clean-srcs:
|
||||||
@$(RM) <%=pathrep['$(TRANSCSRCS)']%>
|
$(Q)$(RM) <%=pathrep['$(TRANSCSRCS)']%>
|
||||||
@-$(RMDIR) <%=pathrep['enc/trans']%><%=@ignore_error%>
|
-$(Q)$(RMDIR) <%=pathrep['enc/trans']%><%=@ignore_error%>
|
||||||
@$(RM) enc/unicode/name2ctype.h
|
$(Q)$(RM) enc/unicode/name2ctype.h
|
||||||
@-$(RMDIR) <%=pathrep['enc/unicode']%><%=@ignore_error%>
|
-$(Q)$(RMDIR) <%=pathrep['enc/unicode']%><%=@ignore_error%>
|
||||||
@-$(RMDIR) <%=pathrep['enc']%><%=@ignore_error%>
|
-$(Q)$(RMDIR) <%=pathrep['enc']%><%=@ignore_error%>
|
||||||
|
|
|
@ -930,7 +930,7 @@ clean-extout:
|
||||||
clean-enc distclean-enc realclean-enc:
|
clean-enc distclean-enc realclean-enc:
|
||||||
!if exist($(ENC_MK))
|
!if exist($(ENC_MK))
|
||||||
@echo $(@:-enc=ing) encodings
|
@echo $(@:-enc=ing) encodings
|
||||||
@-$(MAKE) -f $(ENC_MK) $(MFLAGS) $(@:-enc=)
|
@-$(MAKE) -f $(ENC_MK) $(MFLAGS) V=$(V) $(@:-enc=)
|
||||||
!endif
|
!endif
|
||||||
|
|
||||||
$(RCFILES): $(RBCONFIG) $(srcdir)/revision.h $(srcdir)/win32/resource.rb
|
$(RCFILES): $(RBCONFIG) $(srcdir)/revision.h $(srcdir)/win32/resource.rb
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue