1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* Makefile.in (distclean-ext): removes directories for extensions

correctly.

* common.mk (realclean-local): removes id.h too.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_9_2@28360 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
yugui 2010-06-18 14:10:33 +00:00
parent 9f9dad2cca
commit a7a26fe56b
3 changed files with 9 additions and 2 deletions

View file

@ -1,3 +1,10 @@
Fri Jun 18 23:08:18 2010 Yuki Sonoda (Yugui) <yugui@yugui.jp>
* Makefile.in (distclean-ext): removes directories for extensions
correctly.
* common.mk (realclean-local): removes id.h too.
Fri Jun 18 01:33:21 2010 Yuki Sonoda (Yugui) <yugui@yugui.jp>
* enc/Makefile.in (realclean): has been missing. necessary

View file

@ -268,7 +268,7 @@ clean-ext distclean-ext realclean-ext::
(cd "ext/$$dir" && exec $(MAKE) $(MFLAGS) $(@:-ext=)) && \
case "$@" in \
*distclean-ext*|*realclean-ext*) \
$(RMDIRS) "$$dir";; \
$(RMDIRS) "ext/$$dir";; \
esac; \
done

View file

@ -398,7 +398,7 @@ distclean-extout: clean-extout
realclean:: realclean-ext realclean-local realclean-enc realclean-golf realclean-extout
realclean-local:: distclean-local
@$(RM) parse.c parse.h lex.c newline.c revision.h
@$(RM) parse.c parse.h lex.c newline.c revision.h id.h
realclean-ext::
realclean-golf: distclean-golf
realclean-extout: distclean-extout