mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* common.mk, {bcc,win}32/Makefile.sub (clean-local): remove
intermediate files. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@15592 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
b676e2671e
commit
59a1754a64
5 changed files with 10 additions and 8 deletions
|
@ -1,3 +1,8 @@
|
|||
Sun Feb 24 23:29:48 2008 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* common.mk, {bcc,win}32/Makefile.sub (clean-local): remove
|
||||
intermediate files.
|
||||
|
||||
Sun Feb 24 06:49:12 2008 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* debug.c (ruby_set_debug_option): separated ruby_each_words().
|
||||
|
|
|
@ -194,11 +194,10 @@ lex.c: keywords
|
|||
$(CC) $(CFLAGS) $(XCFLAGS) $(CPPFLAGS) $(COUTFLAG)$@ -S $<
|
||||
|
||||
clean-local::
|
||||
@$(RM) ext/extinit.c ext/extinit.$(OBJEXT)
|
||||
@$(RM) ext/extinit.c ext/extinit.$(OBJEXT) ext/ripper/y.output
|
||||
|
||||
distclean-local::
|
||||
@$(RM) ext/config.cache $(RBCONFIG)
|
||||
@-$(RM) ext/ripper/y.output
|
||||
|
||||
ext/extinit.$(OBJEXT): ext/extinit.c $(SETUP)
|
||||
$(CC) $(CFLAGS) $(XCFLAGS) $(CPPFLAGS) $(COUTFLAG)$@ -c ext/extinit.c
|
||||
|
|
|
@ -517,12 +517,11 @@ post-install-doc::
|
|||
clean-local::
|
||||
@$(RM) ext\extinit.c ext\extinit.$(OBJEXT) *.tds *.il? $(RUBY_SO_NAME).lib
|
||||
@$(RM) $(RUBY_INSTALL_NAME).res $(RUBYW_INSTALL_NAME).res $(RUBY_SO_NAME).res
|
||||
@$(RM) *.map *.pdb *.ilk *.exp $(RUBYDEF) ext\ripper\y.output
|
||||
|
||||
distclean-local::
|
||||
@$(RM) ext\config.cache $(RBCONFIG:/=\)
|
||||
@$(RM) *.map *.pdb *.ilk *.exp $(RUBYDEF)
|
||||
@$(RM) $(RUBY_INSTALL_NAME).rc $(RUBYW_INSTALL_NAME).rc $(RUBY_SO_NAME).rc
|
||||
@-$(RM) ext\ripper\y.output
|
||||
|
||||
ext/extinit.obj: ext/extinit.c $(SETUP)
|
||||
$(CC) $(CFLAGS) $(XCFLAGS) $(CPPFLAGS) $(COUTFLAG)$@ -c ext/extinit.c
|
||||
|
|
|
@ -310,7 +310,7 @@ clean: clean-ext clean-local clean-enc
|
|||
clean-local::
|
||||
@$(RM) $(OBJS) $(MINIOBJS) $(MAINOBJ) $(WINMAINOBJ) $(LIBRUBY_A) $(LIBRUBY_SO) $(LIBRUBY) $(LIBRUBY_ALIASES)
|
||||
@$(RM) $(PROGRAM) $(WPROGRAM) miniruby$(EXEEXT) dmyext.$(OBJEXT) $(ARCHFILE) .*.time
|
||||
@$(RM) *.inc $(GOLFOBJS)
|
||||
@$(RM) *.inc $(GOLFOBJS) y.tab.c y.output
|
||||
clean-ext:
|
||||
@-$(MINIRUBY) $(srcdir)/ext/extmk.rb --make="$(MAKE)" $(EXTMK_ARGS) clean
|
||||
clean-enc:
|
||||
|
@ -320,7 +320,7 @@ distclean: distclean-ext distclean-local distclean-enc
|
|||
distclean-local:: clean-local
|
||||
@$(RM) $(MKFILES) config.h rbconfig.rb yasmdata.rb encdb.h
|
||||
@$(RM) config.cache config.log config.status config.status.lineno $(PRELUDES)
|
||||
@$(RM) *~ *.bak *.stackdump core *.core gmon.out y.tab.c y.output $(PREP)
|
||||
@$(RM) *~ *.bak *.stackdump core *.core gmon.out $(PREP)
|
||||
distclean-ext:
|
||||
@-$(MINIRUBY) $(srcdir)/ext/extmk.rb --make="$(MAKE)" $(EXTMK_ARGS) distclean
|
||||
# -$(RM) $(INSTALLED_LIST) $(arch_hdrdir)/ruby/config.h
|
||||
|
|
|
@ -659,12 +659,11 @@ $(RUBYDEF): $(LIBRUBY_A) $(PREP)
|
|||
clean-local::
|
||||
@$(RM) ext\extinit.c ext\extinit.$(OBJEXT) ext\vc*.pdb miniruby.lib
|
||||
@$(RM) $(RUBY_INSTALL_NAME).res $(RUBYW_INSTALL_NAME).res $(RUBY_SO_NAME).res
|
||||
@$(RM) *.map *.pdb *.ilk *.exp $(RUBYDEF) ext\ripper\y.output
|
||||
|
||||
distclean-local::
|
||||
@$(RM) ext\config.cache $(RBCONFIG:/=\) $(CONFIG_H:/=\)
|
||||
@$(RM) *.map *.pdb *.ilk *.exp $(RUBYDEF)
|
||||
@$(RM) $(RUBY_INSTALL_NAME).rc $(RUBYW_INSTALL_NAME).rc $(RUBY_SO_NAME).rc
|
||||
@-$(RM) ext\ripper\y.output
|
||||
|
||||
$(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 \
|
||||
|
|
Loading…
Reference in a new issue