* 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:
parent
1ff83a064f
commit
4bec0938a1
@ -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>
|
Tue Sep 2 01:31:45 2008 Yuki Sonoda (Yugui) <yugui@yugui.jp>
|
||||||
|
|
||||||
* common.mk (realclean-local): added newline.c.
|
* common.mk (realclean-local): added newline.c.
|
||||||
|
12
common.mk
12
common.mk
@ -325,16 +325,18 @@ install-prereq: $(CLEAR_INSTALLED_LIST)
|
|||||||
clear-installed-list:
|
clear-installed-list:
|
||||||
@exit > $(INSTALLED_LIST)
|
@exit > $(INSTALLED_LIST)
|
||||||
|
|
||||||
clean: clean-ext clean-local clean-enc
|
clean: clean-ext clean-local clean-enc clean-golf
|
||||||
clean-local::
|
clean-local::
|
||||||
@$(RM) $(OBJS) $(MINIOBJS) $(MAINOBJ) $(LIBRUBY_A) $(LIBRUBY_SO) $(LIBRUBY) $(LIBRUBY_ALIASES)
|
@$(RM) $(OBJS) $(MINIOBJS) $(MAINOBJ) $(LIBRUBY_A) $(LIBRUBY_SO) $(LIBRUBY) $(LIBRUBY_ALIASES)
|
||||||
@$(RM) $(PROGRAM) $(WPROGRAM) miniruby$(EXEEXT) dmyext.$(OBJEXT) $(ARCHFILE) .*.time
|
@$(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-ext::
|
||||||
clean-enc:
|
clean-enc:
|
||||||
@-$(MAKE) -f enc.mk $(MFLAGS) clean
|
@-$(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
|
distclean-local:: clean-local
|
||||||
@$(RM) $(MKFILES) $(arch_hdrdir)/ruby/config.h rbconfig.rb yasmdata.rb encdb.h
|
@$(RM) $(MKFILES) $(arch_hdrdir)/ruby/config.h rbconfig.rb yasmdata.rb encdb.h
|
||||||
@$(RM) config.cache config.log config.status config.status.lineno $(PRELUDES)
|
@$(RM) config.cache config.log config.status config.status.lineno $(PRELUDES)
|
||||||
@ -342,12 +344,14 @@ distclean-local:: clean-local
|
|||||||
distclean-ext::
|
distclean-ext::
|
||||||
distclean-enc: clean-enc
|
distclean-enc: clean-enc
|
||||||
@-$(MAKE) -f enc.mk $(MFLAGS) distclean
|
@-$(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
|
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
|
||||||
realclean-ext::
|
realclean-ext::
|
||||||
realclean-enc:: distclean-enc
|
realclean-enc:: distclean-enc
|
||||||
|
realclean-golf: distclean-golf
|
||||||
|
|
||||||
check: test test-all
|
check: test test-all
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user