mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* common.mk : restore changes
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11467 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
784dedc5f0
commit
26608663cd
2 changed files with 190 additions and 47 deletions
|
@ -1,3 +1,7 @@
|
|||
Thu Jan 04 13:42:47 2007
|
||||
|
||||
* common.mk : restore changes
|
||||
|
||||
Thu Jan 04 10:33:54 2007 Koichi Sasada <ko1@atdot.net>
|
||||
|
||||
* thread_pthread.ci : fix to skip using PTHREAD_STACK_MIN.
|
||||
|
|
233
common.mk
233
common.mk
|
@ -1,11 +1,15 @@
|
|||
bin: $(PROGRAM) $(WPROGRAM)
|
||||
lib: $(LIBRUBY);
|
||||
dll: $(LIBRUBY_SO);
|
||||
lib: $(LIBRUBY)
|
||||
dll: $(LIBRUBY_SO)
|
||||
|
||||
RUBYOPT =
|
||||
|
||||
STATIC_RUBY = static-ruby
|
||||
|
||||
EXTCONF = extconf.rb
|
||||
RBCONFIG = ./.rbconfig.time
|
||||
LIBRUBY_EXTS = ./.libruby-with-ext.time
|
||||
RDOCOUT = $(EXTOUT)/rdoc
|
||||
|
||||
DMYEXT = dmyext.$(OBJEXT)
|
||||
MAINOBJ = main.$(OBJEXT)
|
||||
|
@ -71,83 +75,216 @@ OBJS = array.$(OBJEXT) \
|
|||
$(MISSING)
|
||||
|
||||
SCRIPT_ARGS = --dest-dir="$(DESTDIR)" \
|
||||
--extout="$(EXTOUT)" \
|
||||
--make="$(MAKE)" \
|
||||
--mflags="$(MFLAGS)" \
|
||||
--make-flags="$(MAKEFLAGS)"
|
||||
EXTMK_ARGS = $(SCRIPT_ARGS) --extout="$(EXTOUT)" --extension $(EXTS) --extstatic $(EXTSTATIC) --
|
||||
EXTMK_ARGS = $(SCRIPT_ARGS) --extension $(EXTS) --extstatic $(EXTSTATIC) --
|
||||
INSTRUBY_ARGS = $(SCRIPT_ARGS) --installed-list $(INSTALLED_LIST)
|
||||
|
||||
PRE_LIBRUBY_UPDATE = $(MINIRUBY) -e 'ARGV[1] or File.unlink(ARGV[0]) rescue nil' -- \
|
||||
$(LIBRUBY_EXTS) $(LIBRUBY_SO_UPDATE)
|
||||
|
||||
TESTSDIR = $(srcdir)/test
|
||||
TESTWORKDIR = testwork
|
||||
|
||||
all: $(MKFILES) $(PREP) $(RBCONFIG) $(LIBRUBY)
|
||||
$(MINIRUBY) $(srcdir)/ext/extmk.rb $(EXTMK_ARGS)
|
||||
|
||||
@$(MINIRUBY) $(srcdir)/ext/extmk.rb $(EXTMK_ARGS)
|
||||
prog: $(PROGRAM) $(WPROGRAM)
|
||||
|
||||
miniruby$(EXEEXT): config.status $(LIBRUBY_A) $(MAINOBJ) $(MINIOBJS) $(OBJS) $(DMYEXT)
|
||||
|
||||
$(PROGRAM): $(LIBRUBY) $(MAINOBJ) $(OBJS) $(EXTOBJS) $(SETUP) $(PREP)
|
||||
|
||||
$(LIBRUBY_A): $(OBJS) $(DMYEXT)
|
||||
$(LIBRUBY_A): $(OBJS) $(DMYEXT) $(ARCHFILE)
|
||||
|
||||
$(LIBRUBY_SO): $(OBJS) $(DLDOBJS) $(LIBRUBY_A) $(PREP) $(ARCHFILE)
|
||||
$(LIBRUBY_SO): $(OBJS) $(DLDOBJS) $(LIBRUBY_A) $(PREP) $(LIBRUBY_SO_UPDATE)
|
||||
|
||||
static-ruby: $(MAINOBJ) $(EXTOBJS) $(LIBRUBY_A)
|
||||
$(LIBRUBY_EXTS):
|
||||
@exit > $@
|
||||
|
||||
$(STATIC_RUBY)$(EXEEXT): $(MAINOBJ) $(DLDOBJS) $(EXTOBJS) $(LIBRUBY_A)
|
||||
@$(RM) $@
|
||||
$(PURIFY) $(CC) $(LDFLAGS) $(XLDFLAGS) $(MAINLIBS) $(MAINOBJ) $(EXTOBJS) $(LIBRUBY_A) $(LIBS) $(OUTFLAG)$@
|
||||
$(PURIFY) $(CC) $(MAINOBJ) $(DLDOBJS) $(EXTOBJS) $(LIBRUBY_A) $(MAINLIBS) $(EXTLIBS) $(LIBS) $(OUTFLAG)$@ $(LDFLAGS) $(XLDFLAGS)
|
||||
|
||||
ruby.imp: $(LIBRUBY_A)
|
||||
@$(NM) -Pgp $(LIBRUBY_A) | awk 'BEGIN{print "#!"}; $$2~/^[BD]$$/{print $$1}' | sort -u -o $@
|
||||
ruby.imp: $(OBJS)
|
||||
@$(NM) -Pgp $(OBJS) | awk 'BEGIN{print "#!"}; $$2~/^[BD]$$/{print $$1}' | sort -u -o $@
|
||||
|
||||
install: install-nodoc $(RDOCTARGET)
|
||||
install-all: install-nodoc install-doc
|
||||
|
||||
install-nodoc: install-local install-ext
|
||||
install-nodoc: pre-install-nodoc do-install-nodoc post-install-nodoc
|
||||
pre-install-nodoc:: pre-install-local pre-install-ext
|
||||
do-install-nodoc:
|
||||
$(MINIRUBY) $(srcdir)/instruby.rb $(INSTRUBY_ARGS) --mantype="$(MANTYPE)"
|
||||
post-install-nodoc:: post-install-local post-install-ext
|
||||
|
||||
install-local: pre-install-local do-install-local post-install-local
|
||||
pre-install-local:: pre-install-bin pre-install-lib pre-install-man
|
||||
do-install-local:
|
||||
$(MINIRUBY) $(srcdir)/instruby.rb $(INSTRUBY_ARGS) --install=local --mantype="$(MANTYPE)"
|
||||
post-install-local:: post-install-bin post-install-lib post-install-man
|
||||
|
||||
install-ext: pre-install-ext do-install-ext post-install-ext
|
||||
pre-install-ext:: pre-install-ext-arch pre-install-ext-comm
|
||||
do-install-ext:
|
||||
$(MINIRUBY) $(srcdir)/instruby.rb $(INSTRUBY_ARGS) --install=ext
|
||||
post-install-ext:: post-install-ext-arch post-install-ext-comm
|
||||
|
||||
do-install-local: $(RBCONFIG)
|
||||
$(MINIRUBY) $(srcdir)/instruby.rb $(SCRIPT_ARGS) --mantype="$(MANTYPE)"
|
||||
do-install-ext: $(RBCONFIG)
|
||||
$(MINIRUBY) $(srcdir)/ext/extmk.rb $(EXTMK_ARGS) install
|
||||
install-arch: pre-install-arch do-install-arch post-install-arch
|
||||
pre-install-arch:: pre-install-bin pre-install-ext-arch
|
||||
do-install-arch:
|
||||
$(MINIRUBY) $(srcdir)/instruby.rb $(INSTRUBY_ARGS) --install=bin --install=ext-arch
|
||||
post-install-arch:: post-install-bin post-install-ext-arch
|
||||
|
||||
install-bin: $(RBCONFIG)
|
||||
$(MINIRUBY) $(srcdir)/instruby.rb $(SCRIPT_ARGS) --install=bin
|
||||
install-lib: $(RBCONFIG)
|
||||
$(MINIRUBY) $(srcdir)/instruby.rb $(SCRIPT_ARGS) --install=lib
|
||||
install-man: $(RBCONFIG)
|
||||
$(MINIRUBY) $(srcdir)/instruby.rb $(SCRIPT_ARGS) --install=man --mantype="$(MANTYPE)"
|
||||
install-comm: pre-install-comm do-install-comm post-install-comm
|
||||
pre-install-comm:: pre-install-lib pre-install-ext-comm pre-install-man
|
||||
do-install-comm:
|
||||
$(MINIRUBY) $(srcdir)/instruby.rb $(INSTRUBY_ARGS) --install=lib --install=ext-comm --install=man
|
||||
post-install-comm:: post-install-lib post-install-ext-comm post-install-man
|
||||
|
||||
install-bin: pre-install-bin do-install-bin post-install-bin
|
||||
pre-install-bin:: install-prereq
|
||||
do-install-bin:
|
||||
$(MINIRUBY) $(srcdir)/instruby.rb $(INSTRUBY_ARGS) --install=bin
|
||||
post-install-bin::
|
||||
@$(NULLCMD)
|
||||
|
||||
install-lib: pre-install-lib do-install-lib post-install-lib
|
||||
pre-install-lib:: install-prereq
|
||||
do-install-lib:
|
||||
$(MINIRUBY) $(srcdir)/instruby.rb $(INSTRUBY_ARGS) --install=lib
|
||||
post-install-lib::
|
||||
@$(NULLCMD)
|
||||
|
||||
install-ext-comm: pre-install-ext-comm do-install-ext-comm post-install-ext-comm
|
||||
pre-install-ext-comm:: install-prereq
|
||||
do-install-ext-comm:
|
||||
$(MINIRUBY) $(srcdir)/instruby.rb $(INSTRUBY_ARGS) --install=ext-comm
|
||||
post-install-ext-comm::
|
||||
@$(NULLCMD)
|
||||
|
||||
install-ext-arch: pre-install-ext-arch do-install-ext-arch post-install-ext-arch
|
||||
pre-install-ext-arch:: install-prereq
|
||||
do-install-ext-arch:
|
||||
$(MINIRUBY) $(srcdir)/instruby.rb $(INSTRUBY_ARGS) --install=ext-arch
|
||||
post-install-ext-arch::
|
||||
@$(NULLCMD)
|
||||
|
||||
install-man: pre-install-man do-install-man post-install-man
|
||||
pre-install-man:: install-prereq
|
||||
do-install-man:
|
||||
$(MINIRUBY) $(srcdir)/instruby.rb $(INSTRUBY_ARGS) --install=man --mantype="$(MANTYPE)"
|
||||
post-install-man::
|
||||
@$(NULLCMD)
|
||||
|
||||
what-where: no-install
|
||||
no-install: no-install-nodoc no-install-doc
|
||||
what-where-all: no-install-all
|
||||
no-install-all: no-install-nodoc
|
||||
|
||||
what-where-nodoc: no-install-nodoc
|
||||
no-install-nodoc: pre-no-install-nodoc dont-install-nodoc post-no-install-nodoc
|
||||
pre-no-install-nodoc:: pre-no-install-local pre-no-install-ext
|
||||
dont-install-nodoc:
|
||||
$(MINIRUBY) $(srcdir)/instruby.rb -n $(INSTRUBY_ARGS) --mantype="$(MANTYPE)"
|
||||
post-no-install-nodoc:: post-no-install-local post-no-install-ext
|
||||
|
||||
what-where-all no-install-all: no-install no-install-doc
|
||||
what-where no-install: no-install-local no-install-ext
|
||||
what-where-local: no-install-local
|
||||
no-install-local: $(RBCONFIG)
|
||||
$(MINIRUBY) $(srcdir)/instruby.rb -n $(SCRIPT_ARGS) --mantype="$(MANTYPE)"
|
||||
no-install-local: pre-no-install-local dont-install-local post-no-install-local
|
||||
pre-no-install-local:: pre-no-install-bin pre-no-install-lib pre-no-install-man
|
||||
dont-install-local:
|
||||
$(MINIRUBY) $(srcdir)/instruby.rb -n $(INSTRUBY_ARGS) --install=local --mantype="$(MANTYPE)"
|
||||
post-no-install-local:: post-no-install-bin post-no-install-lib post-no-install-man
|
||||
|
||||
what-where-ext: no-install-ext
|
||||
no-install-ext: $(RBCONFIG)
|
||||
$(MINIRUBY) $(srcdir)/ext/extmk.rb -n $(EXTMK_ARGS) install
|
||||
no-install-ext: pre-no-install-ext dont-install-ext post-no-install-ext
|
||||
pre-no-install-ext:: pre-no-install-ext-arch pre-no-install-ext-comm
|
||||
dont-install-ext:
|
||||
$(MINIRUBY) $(srcdir)/instruby.rb -n $(INSTRUBY_ARGS) --install=ext
|
||||
post-no-install-ext:: post-no-install-ext-arch post-no-install-ext-comm
|
||||
|
||||
install-doc: pre-install-doc do-install-doc post-install-doc
|
||||
what-where-arch: no-install-arch
|
||||
no-install-arch: pre-no-install-arch dont-install-arch post-no-install-arch
|
||||
pre-no-install-arch:: pre-no-install-bin pre-no-install-ext-arch
|
||||
dont-install-arch:
|
||||
$(MINIRUBY) $(srcdir)/instruby.rb -n $(INSTRUBY_ARGS) --install=bin --install=ext-arch
|
||||
post-no-install-arch:: post-no-install-lib post-no-install-man post-no-install-ext-arch
|
||||
|
||||
what-where-comm: no-install-comm
|
||||
no-install-comm: pre-no-install-comm dont-install-comm post-no-install-comm
|
||||
pre-no-install-comm:: pre-no-install-lib pre-no-install-ext-comm pre-no-install-man
|
||||
dont-install-comm:
|
||||
$(MINIRUBY) $(srcdir)/instruby.rb -n $(INSTRUBY_ARGS) --install=lib --install=ext-comm --install=man
|
||||
post-no-install-comm:: post-no-install-lib post-no-install-ext-comm post-no-install-man
|
||||
|
||||
what-where-bin: no-install-bin
|
||||
no-install-bin: pre-no-install-bin dont-install-bin post-no-install-bin
|
||||
pre-no-install-bin:: install-prereq
|
||||
dont-install-bin:
|
||||
$(MINIRUBY) $(srcdir)/instruby.rb -n $(INSTRUBY_ARGS) --install=bin
|
||||
post-no-install-bin::
|
||||
@$(NULLCMD)
|
||||
|
||||
what-where-lib: no-install-lib
|
||||
no-install-lib: pre-no-install-lib dont-install-lib post-no-install-lib
|
||||
pre-no-install-lib:: install-prereq
|
||||
dont-install-lib:
|
||||
$(MINIRUBY) $(srcdir)/instruby.rb -n $(INSTRUBY_ARGS) --install=lib
|
||||
post-no-install-lib::
|
||||
@$(NULLCMD)
|
||||
|
||||
what-where-ext-comm: no-install-ext-comm
|
||||
no-install-ext-comm: pre-no-install-ext-comm dont-install-ext-comm post-no-install-ext-comm
|
||||
pre-no-install-ext-comm:: install-prereq
|
||||
dont-install-ext-comm:
|
||||
$(MINIRUBY) $(srcdir)/instruby.rb -n $(INSTRUBY_ARGS) --install=ext-comm
|
||||
post-no-install-ext-comm::
|
||||
@$(NULLCMD)
|
||||
|
||||
what-where-ext-arch: no-install-ext-arch
|
||||
no-install-ext-arch: pre-no-install-ext-arch dont-install-ext-arch post-no-install-ext-arch
|
||||
pre-no-install-ext-arch:: install-prereq
|
||||
dont-install-ext-arch:
|
||||
$(MINIRUBY) $(srcdir)/instruby.rb -n $(INSTRUBY_ARGS) --install=ext-arch
|
||||
post-no-install-ext-arch::
|
||||
@$(NULLCMD)
|
||||
|
||||
what-where-man: no-install-man
|
||||
no-install-man: pre-no-install-man dont-install-man post-no-install-man
|
||||
pre-no-install-man:: install-prereq
|
||||
dont-install-man:
|
||||
$(MINIRUBY) $(srcdir)/instruby.rb -n $(INSTRUBY_ARGS) --install=man --mantype="$(MANTYPE)"
|
||||
post-no-install-man::
|
||||
@$(NULLCMD)
|
||||
|
||||
install-doc: rdoc pre-install-doc do-install-doc post-install-doc
|
||||
pre-install-doc:: install-prereq
|
||||
do-install-doc: $(PROGRAM)
|
||||
$(MINIRUBY) $(srcdir)/instruby.rb $(INSTRUBY_ARGS) --install=rdoc --rdoc-output="$(RDOCOUT)"
|
||||
post-install-doc::
|
||||
@$(NULLCMD)
|
||||
|
||||
rdoc: $(PROGRAM) PHONY
|
||||
@echo Generating RDoc documentation
|
||||
$(RUNRUBY) "$(srcdir)/bin/rdoc" --all --ri --op "$(RIDATADIR)" "$(srcdir)"
|
||||
$(RUNRUBY) "$(srcdir)/bin/rdoc" --all --ri --op "$(RDOCOUT)" "$(srcdir)"
|
||||
|
||||
pre-install: pre-install-local pre-install-ext
|
||||
pre-install-local:: PHONY
|
||||
pre-install-ext:: PHONY
|
||||
pre-install-doc:: PHONY
|
||||
what-where-doc: no-install-doc
|
||||
no-install-doc: pre-no-install-doc dont-install-doc post-no-install-doc
|
||||
pre-no-install-doc:: install-prereq
|
||||
dont-install-doc::
|
||||
$(MINIRUBY) $(srcdir)/instruby.rb -n $(INSTRUBY_ARGS) --install=rdoc --rdoc-output="$(RDOCOUT)"
|
||||
post-no-install-doc::
|
||||
@$(NULLCMD)
|
||||
|
||||
post-install: post-install-local post-install-ext
|
||||
post-install-local:: PHONY
|
||||
post-install-ext:: PHONY
|
||||
post-install-doc:: PHONY
|
||||
|
||||
# no ext
|
||||
# clean: clean-ext clean-local
|
||||
clean: clean-local
|
||||
install-prereq:
|
||||
@exit > $(INSTALLED_LIST)
|
||||
|
||||
clean: clean-ext clean-local
|
||||
clean-local::
|
||||
@$(RM) $(OBJS) $(MAINOBJ) $(WINMAINOBJ) $(LIBRUBY_A) $(LIBRUBY_SO) $(LIBRUBY) $(LIBRUBY_ALIASES)
|
||||
@$(RM) $(PROGRAM) $(WPROGRAM) miniruby$(EXEEXT) dmyext.$(OBJEXT) $(ARCHFILE)
|
||||
@$(RM) $(PROGRAM) $(WPROGRAM) miniruby$(EXEEXT) dmyext.$(OBJEXT) $(ARCHFILE) .*.time
|
||||
@$(RM) *.inc
|
||||
|
||||
clean-ext:
|
||||
@-$(MINIRUBY) $(srcdir)/ext/extmk.rb $(EXTMK_ARGS) clean
|
||||
|
||||
|
@ -167,15 +304,15 @@ check: test test-all
|
|||
test: miniruby$(EXEEXT) $(RBCONFIG) $(PROGRAM) PHONY
|
||||
@$(MINIRUBY) $(srcdir)/rubytest.rb
|
||||
|
||||
test-all: miniruby$(EXEEXT) ruby
|
||||
$(RUNRUBY) -C "$(srcdir)/test" runner.rb --runner=$(TESTUI) $(TESTS)
|
||||
test-all:
|
||||
$(RUNRUBY) "$(srcdir)/test/runner.rb" --basedir="$(TESTSDIR)" --runner=$(TESTUI) $(TESTS)
|
||||
|
||||
extconf:
|
||||
$(MINIRUBY) -I$(srcdir)/lib -run -e mkdir -- -p "$(EXTCONFDIR)"
|
||||
$(RUNRUBY) -C "$(EXTCONFDIR)" $(EXTCONF) $(EXTCONFARGS)
|
||||
|
||||
$(RBCONFIG): $(srcdir)/mkconfig.rb config.status $(PREP)
|
||||
$(MINIRUBY) $(srcdir)/mkconfig.rb -timestamp=$@ \
|
||||
@$(MINIRUBY) $(srcdir)/mkconfig.rb -timestamp=$@ \
|
||||
-install_name=$(RUBY_INSTALL_NAME) \
|
||||
-so_name=$(RUBY_SO_NAME) rbconfig.rb
|
||||
|
||||
|
@ -211,6 +348,8 @@ nt.$(OBJEXT): {$(VPATH)}nt.c
|
|||
x68.$(OBJEXT): {$(VPATH)}x68.c
|
||||
os2.$(OBJEXT): {$(VPATH)}os2.c
|
||||
dl_os2.$(OBJEXT): {$(VPATH)}dl_os2.c
|
||||
ia64.$(OBJEXT): {$(VPATH)}ia64.s
|
||||
$(CC) $(CFLAGS) -c $<
|
||||
|
||||
# when I use -I., there is confliction at "OpenFile"
|
||||
# so, set . into environment varible "include"
|
||||
|
|
Loading…
Reference in a new issue