mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* common.mk (clean-enc): clean encoding objects.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@14677 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
4496da18a8
commit
84d6f71195
2 changed files with 12 additions and 1 deletions
|
@ -1,3 +1,7 @@
|
|||
Tue Dec 25 16:15:15 2007 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* common.mk (clean-enc): clean encoding objects.
|
||||
|
||||
Tue Dec 25 16:04:28 2007 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* trunk/common.mk, goruby.c, golf_prelude.rb: for golfers.
|
||||
|
|
|
@ -14,7 +14,7 @@ LIBRUBY_EXTS = ./.libruby-with-ext.time
|
|||
RDOCOUT = $(EXTOUT)/rdoc
|
||||
|
||||
DMYEXT = dmyext.$(OBJEXT)
|
||||
NORMALMAINOBJ = main.$(OBJEXT) revision.$(OBJEXT)
|
||||
NORMALMAINOBJ = main.$(OBJEXT)
|
||||
MAINOBJ = $(NORMALMAINOBJ)
|
||||
EXTOBJS =
|
||||
DLDOBJS = $(DMYEXT)
|
||||
|
@ -307,6 +307,8 @@ clean-local::
|
|||
@$(RM) *.inc
|
||||
clean-ext:
|
||||
@-$(MINIRUBY) $(srcdir)/ext/extmk.rb $(EXTMK_ARGS) clean
|
||||
clean-enc:
|
||||
@-$(MAKE) -f enc.mk $(MFLAGS) clean
|
||||
|
||||
distclean: distclean-ext distclean-local
|
||||
distclean-local:: clean-local
|
||||
|
@ -315,12 +317,17 @@ distclean-local:: clean-local
|
|||
@$(RM) *~ *.bak *.stackdump core *.core gmon.out y.tab.c y.output $(PREP)
|
||||
distclean-ext:
|
||||
@-$(MINIRUBY) $(srcdir)/ext/extmk.rb $(EXTMK_ARGS) distclean
|
||||
# -$(RM) $(INSTALLED_LIST) $(arch_hdrdir)/ruby/config.h
|
||||
# -rmdir -p $(arch_hdrdir)/ruby
|
||||
distclean-enc: clean-enc
|
||||
@-$(MAKE) -f enc.mk $(MFLAGS) distclean
|
||||
|
||||
realclean:: realclean-ext realclean-local
|
||||
realclean-local:: distclean-local
|
||||
@$(RM) parse.c lex.c
|
||||
realclean-ext::
|
||||
@-$(MINIRUBY) $(srcdir)/ext/extmk.rb $(EXTMK_ARGS) realclean
|
||||
distclean-enc:: distclean-enc
|
||||
|
||||
check: test test-all
|
||||
|
||||
|
|
Loading…
Reference in a new issue