mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* Makefile.in (distclean-ext, realclean-ext): use EXTS as default.
* win32/Makefile.sub (distclean-ext, realclean-ext): try to remove ext directory. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@21220 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
79ccc677e7
commit
fd855a082b
3 changed files with 27 additions and 9 deletions
|
@ -1,3 +1,10 @@
|
|||
Thu Jan 1 07:16:44 2009 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* Makefile.in (distclean-ext, realclean-ext): use EXTS as default.
|
||||
|
||||
* win32/Makefile.sub (distclean-ext, realclean-ext): try to remove ext
|
||||
directory.
|
||||
|
||||
Thu Jan 1 06:56:28 2009 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* tool/file2lastrev.rb: unset PWD.
|
||||
|
|
23
Makefile.in
23
Makefile.in
|
@ -226,17 +226,24 @@ distclean-local::
|
|||
-rmdir -p $(arch_hdrdir)/ruby
|
||||
|
||||
clean-ext distclean-ext realclean-ext::
|
||||
@find ext -name Makefile | sort | while read mk; do \
|
||||
dir=`dirname "$$mk"`; \
|
||||
echo $(@:-ext=)ing `expr "$$dir" : 'ext/\(.*\)'`; \
|
||||
@set dummy ${EXTS}; shift; \
|
||||
if test "$$#" = 0; then \
|
||||
set dummy `find ext -name Makefile | sed 's:^ext/::;s:/Makefile$$::' | sort`; \
|
||||
shift; \
|
||||
fi; \
|
||||
cd ext; \
|
||||
for dir; do \
|
||||
echo $(@:-ext=)ing "$$dir"; \
|
||||
(cd "$$dir"; $(MAKE) $(MFLAGS) $(@:-ext=)) && \
|
||||
if [ $@ == clean-ext ]; then \
|
||||
true; \
|
||||
else \
|
||||
rmdir -p "$$dir" 2> /dev/null; \
|
||||
fi; \
|
||||
case "$@" in \
|
||||
*distclean-ext*|*realclean-ext*) \
|
||||
rmdir -p "$$dir" 2> /dev/null;; \
|
||||
esac; \
|
||||
done
|
||||
|
||||
distclean-ext realclean-ext::
|
||||
@-rmdir ext 2> /dev/null || true
|
||||
|
||||
ext/extinit.$(OBJEXT): ext/extinit.c $(SETUP)
|
||||
$(CC) $(CFLAGS) $(XCFLAGS) $(CPPFLAGS) $(COUTFLAG)$@ -c ext/extinit.c
|
||||
|
||||
|
|
|
@ -692,9 +692,13 @@ clean-ext distclean-ext realclean-ext::
|
|||
echo $(@:-ext=)ing %~nI & \
|
||||
cd %I & \
|
||||
$(MAKE) $(MFLAGS) $(@:-ext=) & \
|
||||
cd %CD% \
|
||||
cd %CD% & \
|
||||
rmdir %I \
|
||||
)
|
||||
|
||||
distclean-ext realclean-ext::
|
||||
@-rmdir ext
|
||||
|
||||
$(RUBY_INSTALL_NAME).rc $(RUBYW_INSTALL_NAME).rc $(RUBY_SO_NAME).rc: $(RBCONFIG) $(srcdir)/revision.h $(srcdir)/win32/resource.rb
|
||||
@$(MINIRUBY) $(srcdir)/win32/resource.rb \
|
||||
-ruby_name=$(RUBY_INSTALL_NAME) \
|
||||
|
|
Loading…
Reference in a new issue