зеркало из https://github.com/github/ruby.git
* configure.in: rm largefile.h.
* common.mk: clean golf, conf*, preludes, and so on. * enc/depend: silent and ignore error for rm. * enc/Makefile.in: should define prefix and exec_prefix. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@14791 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
Родитель
7c1cab2a4f
Коммит
6c2849dd46
10
ChangeLog
10
ChangeLog
|
@ -1,3 +1,13 @@
|
||||||
|
Sun Dec 30 10:54:49 2007 NARUSE, Yui <naruse@ruby-lang.org>
|
||||||
|
|
||||||
|
* configure.in: rm largefile.h.
|
||||||
|
|
||||||
|
* common.mk: clean golf, conf*, preludes, and so on.
|
||||||
|
|
||||||
|
* enc/depend: silent and ignore error for rm.
|
||||||
|
|
||||||
|
* enc/Makefile.in: should define prefix and exec_prefix.
|
||||||
|
|
||||||
Sun Dec 30 06:31:11 2007 NAKAMURA Usaku <usa@ruby-lang.org>
|
Sun Dec 30 06:31:11 2007 NAKAMURA Usaku <usa@ruby-lang.org>
|
||||||
|
|
||||||
* encoding.c (Init_encoding): register Windows-31J and its alias.
|
* encoding.c (Init_encoding): register Windows-31J and its alias.
|
||||||
|
|
10
common.mk
10
common.mk
|
@ -304,7 +304,7 @@ clean: clean-ext clean-local clean-enc
|
||||||
clean-local::
|
clean-local::
|
||||||
@$(RM) $(OBJS) $(MINIOBJS) $(MAINOBJ) $(WINMAINOBJ) $(LIBRUBY_A) $(LIBRUBY_SO) $(LIBRUBY) $(LIBRUBY_ALIASES)
|
@$(RM) $(OBJS) $(MINIOBJS) $(MAINOBJ) $(WINMAINOBJ) $(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
|
@$(RM) *.inc $(GOLFOBJS)
|
||||||
clean-ext:
|
clean-ext:
|
||||||
@-$(MINIRUBY) $(srcdir)/ext/extmk.rb $(EXTMK_ARGS) clean
|
@-$(MINIRUBY) $(srcdir)/ext/extmk.rb $(EXTMK_ARGS) clean
|
||||||
clean-enc:
|
clean-enc:
|
||||||
|
@ -312,9 +312,10 @@ clean-enc:
|
||||||
|
|
||||||
distclean: distclean-ext distclean-local distclean-enc
|
distclean: distclean-ext distclean-local distclean-enc
|
||||||
distclean-local:: clean-local
|
distclean-local:: clean-local
|
||||||
@$(RM) $(MKFILES) config.h rbconfig.rb
|
@$(RM) $(MKFILES) config.h rbconfig.rb yasmdata.rb
|
||||||
@$(RM) config.cache config.log config.status
|
@$(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 y.tab.c y.output $(PREP)
|
||||||
|
@-$(RM) ext/ripper/y.output
|
||||||
distclean-ext:
|
distclean-ext:
|
||||||
@-$(MINIRUBY) $(srcdir)/ext/extmk.rb $(EXTMK_ARGS) distclean
|
@-$(MINIRUBY) $(srcdir)/ext/extmk.rb $(EXTMK_ARGS) distclean
|
||||||
# -$(RM) $(INSTALLED_LIST) $(arch_hdrdir)/ruby/config.h
|
# -$(RM) $(INSTALLED_LIST) $(arch_hdrdir)/ruby/config.h
|
||||||
|
@ -324,7 +325,7 @@ distclean-enc: clean-enc
|
||||||
|
|
||||||
realclean:: realclean-ext realclean-local realclean-enc
|
realclean:: realclean-ext realclean-local realclean-enc
|
||||||
realclean-local:: distclean-local
|
realclean-local:: distclean-local
|
||||||
@$(RM) parse.c lex.c
|
@$(RM) parse.c lex.c revision.h
|
||||||
realclean-ext::
|
realclean-ext::
|
||||||
@-$(MINIRUBY) $(srcdir)/ext/extmk.rb $(EXTMK_ARGS) realclean
|
@-$(MINIRUBY) $(srcdir)/ext/extmk.rb $(EXTMK_ARGS) realclean
|
||||||
realclean-enc:: distclean-enc
|
realclean-enc:: distclean-enc
|
||||||
|
@ -676,6 +677,7 @@ prereq: incs srcs preludes
|
||||||
|
|
||||||
preludes: {$(VPATH)}miniprelude.c
|
preludes: {$(VPATH)}miniprelude.c
|
||||||
preludes: {$(srcdir)}golf_prelude.c
|
preludes: {$(srcdir)}golf_prelude.c
|
||||||
|
PRELUDES = prelude.c miniprelude.c golf_prelude.c
|
||||||
|
|
||||||
docs:
|
docs:
|
||||||
$(BASERUBY) -I$(srcdir) $(srcdir)/tool/makedocs.rb $(INSNS2VMOPT)
|
$(BASERUBY) -I$(srcdir) $(srcdir)/tool/makedocs.rb $(INSNS2VMOPT)
|
||||||
|
|
|
@ -1788,6 +1788,7 @@ else
|
||||||
tr -d '\015' < confdefs.h > "${config_h}"
|
tr -d '\015' < confdefs.h > "${config_h}"
|
||||||
fi
|
fi
|
||||||
tr -d '\015' < largefile.h > confdefs.h
|
tr -d '\015' < largefile.h > confdefs.h
|
||||||
|
rm largefile.h
|
||||||
|
|
||||||
BUILTIN_ENCS=["`sed -n -e '/^BUILTIN_ENCS[ ]*=/{' \
|
BUILTIN_ENCS=["`sed -n -e '/^BUILTIN_ENCS[ ]*=/{' \
|
||||||
-e s/// -e :l -e '/\\\\$/N' -e 's/\\\\\\n/ /' -e 't l' -e p \
|
-e s/// -e :l -e '/\\\\$/N' -e 's/\\\\\\n/ /' -e 't l' -e p \
|
||||||
|
|
|
@ -1,5 +1,7 @@
|
||||||
encsrcdir = @srcdir@
|
encsrcdir = @srcdir@
|
||||||
topdir = .
|
topdir = .
|
||||||
|
prefix = @prefix@
|
||||||
|
exec_prefix = @exec_prefix@
|
||||||
libdir = @libdir@
|
libdir = @libdir@
|
||||||
top_srcdir = $(encsrcdir:/enc=)
|
top_srcdir = $(encsrcdir:/enc=)
|
||||||
srcdir = $(top_srcdir)
|
srcdir = $(top_srcdir)
|
||||||
|
@ -45,4 +47,4 @@ all:
|
||||||
clean:
|
clean:
|
||||||
|
|
||||||
distclean: clean
|
distclean: clean
|
||||||
$(RM) enc.mk
|
@$(RM) enc.mk
|
||||||
|
|
|
@ -55,9 +55,4 @@ enc/<%=e%>.$(OBJEXT): $(srcdir)/enc/<%=e%>.c
|
||||||
% end
|
% end
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
$(RM) $(ENCSOS)
|
@$(RM) $(ENCSOS) $(ENCDEFS) $(ENCOBJS) $(TRANSSOS) $(TRANSDEFS) $(TRANSOBJS)
|
||||||
$(RM) $(ENCDEFS)
|
|
||||||
$(RM) $(ENCOBJS)
|
|
||||||
$(RM) $(TRANSSOS)
|
|
||||||
$(RM) $(TRANSDEFS)
|
|
||||||
$(RM) $(TRANSOBJS)
|
|
||||||
|
|
Загрузка…
Ссылка в новой задаче