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

* common.mk (clean-golf): added.

(distclean-golf): added.
  (realclean-golf): added.
  (clean): added clean-golf.
  (distclean): added distclean-golf.
  (realclean): added realclean-golf.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19041 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
yugui 2008-09-01 16:51:06 +00:00
parent 1ff83a064f
commit 4bec0938a1
2 changed files with 17 additions and 4 deletions

View file

@ -1,3 +1,12 @@
Tue Sep 2 01:47:44 2008 Yuki Sonoda (Yugui) <yugui@yugui.jp>
* common.mk (clean-golf): added.
(distclean-golf): added.
(realclean-golf): added.
(clean): added clean-golf.
(distclean): added distclean-golf.
(realclean): added realclean-golf.
Tue Sep 2 01:31:45 2008 Yuki Sonoda (Yugui) <yugui@yugui.jp>
* common.mk (realclean-local): added newline.c.

View file

@ -325,16 +325,18 @@ install-prereq: $(CLEAR_INSTALLED_LIST)
clear-installed-list:
@exit > $(INSTALLED_LIST)
clean: clean-ext clean-local clean-enc
clean: clean-ext clean-local clean-enc clean-golf
clean-local::
@$(RM) $(OBJS) $(MINIOBJS) $(MAINOBJ) $(LIBRUBY_A) $(LIBRUBY_SO) $(LIBRUBY) $(LIBRUBY_ALIASES)
@$(RM) $(PROGRAM) $(WPROGRAM) miniruby$(EXEEXT) dmyext.$(OBJEXT) $(ARCHFILE) .*.time
@$(RM) *.inc $(GOLFOBJS) y.tab.c y.output encdb.h transdb.h
@$(RM) *.inc y.tab.c y.output encdb.h transdb.h
clean-ext::
clean-enc:
@-$(MAKE) -f enc.mk $(MFLAGS) clean
clean-golf:
@$(RM) $(GORUBY)$(EXEEXT) $(GOLFOBJS)
distclean: distclean-ext distclean-local distclean-enc
distclean: distclean-ext distclean-local distclean-enc distclean-golf
distclean-local:: clean-local
@$(RM) $(MKFILES) $(arch_hdrdir)/ruby/config.h rbconfig.rb yasmdata.rb encdb.h
@$(RM) config.cache config.log config.status config.status.lineno $(PRELUDES)
@ -342,12 +344,14 @@ distclean-local:: clean-local
distclean-ext::
distclean-enc: clean-enc
@-$(MAKE) -f enc.mk $(MFLAGS) distclean
distclean-golf: clean-golf
realclean:: realclean-ext realclean-local realclean-enc
realclean:: realclean-ext realclean-local realclean-enc realclean-golf
realclean-local:: distclean-local
@$(RM) parse.c parse.h lex.c newline.c revision.h
realclean-ext::
realclean-enc:: distclean-enc
realclean-golf: distclean-golf
check: test test-all