Created
January 17, 2012 05:24
-
-
Save techieBrandon/1624916 to your computer and use it in GitHub Desktop.
ruby-1.9.2-p290 - DESTDIR for make install extensions modifications
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| bin: $(PROGRAM) $(WPROGRAM) | |
| lib: $(LIBRUBY) | |
| dll: $(LIBRUBY_SO) | |
| .SUFFIXES: .inc .h .c .y .i | |
| RUBYLIB = - | |
| RUBYOPT = - | |
| SPEC_GIT_BASE = git://github.com/rubyspec | |
| MSPEC_GIT_URL = $(SPEC_GIT_BASE)/mspec.git | |
| RUBYSPEC_GIT_URL = $(SPEC_GIT_BASE)/rubyspec.git | |
| STATIC_RUBY = static-ruby | |
| EXTCONF = extconf.rb | |
| RBCONFIG = ./.rbconfig.time | |
| LIBRUBY_EXTS = ./.libruby-with-ext.time | |
| REVISION_H = ./.revision.time | |
| RDOCOUT = $(EXTOUT)/rdoc | |
| ID_H_TARGET = -id.h- | |
| DMYEXT = dmyext.$(OBJEXT) | |
| NORMALMAINOBJ = main.$(OBJEXT) | |
| MAINOBJ = $(NORMALMAINOBJ) | |
| EXTOBJS = | |
| DLDOBJS = $(DMYEXT) | |
| MINIOBJS = $(ARCHMINIOBJS) dmyencoding.$(OBJEXT) dmyversion.$(OBJEXT) miniprelude.$(OBJEXT) | |
| ENC_MK = enc.mk | |
| COMMONOBJS = array.$(OBJEXT) \ | |
| bignum.$(OBJEXT) \ | |
| class.$(OBJEXT) \ | |
| compar.$(OBJEXT) \ | |
| complex.$(OBJEXT) \ | |
| dir.$(OBJEXT) \ | |
| dln_find.$(OBJEXT) \ | |
| enum.$(OBJEXT) \ | |
| enumerator.$(OBJEXT) \ | |
| error.$(OBJEXT) \ | |
| eval.$(OBJEXT) \ | |
| load.$(OBJEXT) \ | |
| proc.$(OBJEXT) \ | |
| file.$(OBJEXT) \ | |
| gc.$(OBJEXT) \ | |
| hash.$(OBJEXT) \ | |
| inits.$(OBJEXT) \ | |
| io.$(OBJEXT) \ | |
| marshal.$(OBJEXT) \ | |
| math.$(OBJEXT) \ | |
| node.$(OBJEXT) \ | |
| numeric.$(OBJEXT) \ | |
| object.$(OBJEXT) \ | |
| pack.$(OBJEXT) \ | |
| parse.$(OBJEXT) \ | |
| process.$(OBJEXT) \ | |
| random.$(OBJEXT) \ | |
| range.$(OBJEXT) \ | |
| rational.$(OBJEXT) \ | |
| re.$(OBJEXT) \ | |
| regcomp.$(OBJEXT) \ | |
| regenc.$(OBJEXT) \ | |
| regerror.$(OBJEXT) \ | |
| regexec.$(OBJEXT) \ | |
| regparse.$(OBJEXT) \ | |
| regsyntax.$(OBJEXT) \ | |
| ruby.$(OBJEXT) \ | |
| safe.$(OBJEXT) \ | |
| signal.$(OBJEXT) \ | |
| sprintf.$(OBJEXT) \ | |
| st.$(OBJEXT) \ | |
| strftime.$(OBJEXT) \ | |
| string.$(OBJEXT) \ | |
| struct.$(OBJEXT) \ | |
| time.$(OBJEXT) \ | |
| transcode.$(OBJEXT) \ | |
| util.$(OBJEXT) \ | |
| variable.$(OBJEXT) \ | |
| compile.$(OBJEXT) \ | |
| debug.$(OBJEXT) \ | |
| iseq.$(OBJEXT) \ | |
| vm.$(OBJEXT) \ | |
| vm_dump.$(OBJEXT) \ | |
| thread.$(OBJEXT) \ | |
| cont.$(OBJEXT) \ | |
| $(BUILTIN_ENCOBJS) \ | |
| $(BUILTIN_TRANSOBJS) \ | |
| $(MISSING) | |
| EXPORTOBJS = dln.$(OBJEXT) \ | |
| encoding.$(OBJEXT) \ | |
| version.$(OBJEXT) \ | |
| $(COMMONOBJS) | |
| OBJS = $(EXPORTOBJS) prelude.$(OBJEXT) | |
| GOLFOBJS = goruby.$(OBJEXT) golf_prelude.$(OBJEXT) | |
| PRELUDE_SCRIPTS = $(srcdir)/prelude.rb $(srcdir)/enc/prelude.rb $(srcdir)/gem_prelude.rb | |
| PRELUDES = prelude.c miniprelude.c | |
| GOLFPRELUDES = golf_prelude.c | |
| SCRIPT_ARGS = --dest-dir="$(DESTDIR)" \ | |
| --extout="$(EXTOUT)" \ | |
| --mflags="$(MFLAGS)" \ | |
| --make-flags="$(MAKEFLAGS)" | |
| EXTMK_ARGS = $(SCRIPT_ARGS) --extension $(EXTS) --extstatic $(EXTSTATIC) \ | |
| --make-flags="MINIRUBY='$(MINIRUBY)'" -- | |
| INSTRUBY = $(MINIRUBY) $(srcdir)/tool/rbinstall.rb | |
| INSTRUBY_ARGS = $(SCRIPT_ARGS) \ | |
| --data-mode=$(INSTALL_DATA_MODE) \ | |
| --prog-mode=$(INSTALL_PROG_MODE) \ | |
| --installed-list $(INSTALLED_LIST) | |
| INSTALL_PROG_MODE = 0755 | |
| INSTALL_DATA_MODE = 0644 | |
| PRE_LIBRUBY_UPDATE = $(MINIRUBY) -e 'ARGV[1] or File.unlink(ARGV[0]) rescue nil' -- \ | |
| $(LIBRUBY_EXTS) $(LIBRUBY_SO_UPDATE) | |
| TESTSDIR = $(srcdir)/test | |
| TESTWORKDIR = testwork | |
| TESTRUN_SCRIPT = $(srcdir)/test.rb | |
| BOOTSTRAPRUBY = $(BASERUBY) | |
| COMPILE_PRELUDE = $(MINIRUBY) -I$(srcdir) $(srcdir)/tool/compile_prelude.rb | |
| all: main docs | |
| main: encs exts | |
| @$(RUNCMD) $(MKMAIN_CMD) $(MAKE) | |
| exts: $(MKMAIN_CMD) | |
| $(MKMAIN_CMD): $(MKFILES) incs $(PREP) $(RBCONFIG) $(LIBRUBY) | |
| @$(MINIRUBY) $(srcdir)/ext/extmk.rb --make="$(MAKE)" --command-output=$@ $(EXTMK_ARGS) | |
| prog: $(PROGRAM) $(WPROGRAM) | |
| loadpath: $(PREP) PHONY | |
| $(MINIRUBY) -e 'p $$:' | |
| $(PREP): $(MKFILES) | |
| miniruby$(EXEEXT): config.status $(NORMALMAINOBJ) $(MINIOBJS) $(COMMONOBJS) $(DMYEXT) $(ARCHFILE) | |
| GORUBY = go$(RUBY_INSTALL_NAME) | |
| golf: $(LIBRUBY) $(GOLFOBJS) PHONY | |
| $(MAKE) $(MFLAGS) MAINOBJ="$(GOLFOBJS)" PROGRAM=$(GORUBY)$(EXEEXT) program | |
| capi: doc/capi/.timestamp PHONY | |
| doc/capi/.timestamp: Doxyfile $(PREP) | |
| @$(MAKEDIRS) doc/capi | |
| @$(DOXYGEN) | |
| $(MINIRUBY) -e 'File.open("doc/capi/.timestamp", "w"){|f| f.puts(Time.now)}' | |
| Doxyfile: $(srcdir)/template/Doxyfile.tmpl $(PREP) $(srcdir)/tool/generic_erb.rb $(RBCONFIG) | |
| $(MINIRUBY) $(srcdir)/tool/generic_erb.rb -o $@ $(srcdir)/template/Doxyfile.tmpl \ | |
| --srcdir="$(srcdir)" --miniruby="$(MINIRUBY)" | |
| program: $(PROGRAM) | |
| $(PROGRAM): $(LIBRUBY) $(MAINOBJ) $(OBJS) $(EXTOBJS) $(SETUP) $(PREP) | |
| $(LIBRUBY_A): $(OBJS) $(DMYEXT) $(ARCHFILE) | |
| $(LIBRUBY_SO): $(OBJS) $(DLDOBJS) $(LIBRUBY_A) $(PREP) $(LIBRUBY_SO_UPDATE) $(BUILTIN_ENCOBJS) | |
| $(LIBRUBY_EXTS): | |
| @exit > $@ | |
| $(STATIC_RUBY)$(EXEEXT): $(MAINOBJ) $(DLDOBJS) $(EXTOBJS) $(LIBRUBY_A) | |
| @$(RM) $@ | |
| $(PURIFY) $(CC) $(MAINOBJ) $(DLDOBJS) $(EXTOBJS) $(LIBRUBY_A) $(MAINLIBS) $(EXTLIBS) $(LIBS) $(OUTFLAG)$@ $(LDFLAGS) $(XLDFLAGS) | |
| ruby.imp: $(EXPORTOBJS) | |
| @$(NM) -Pgp $(EXPORTOBJS) | \ | |
| awk 'BEGIN{print "#!"}; $$2~/^[BDT]$$/&&$$1!~/^(Init_|.*_threadptr_|\.)/{print $$1}' | \ | |
| sort -u -o $@ | |
| install: install-$(INSTALLDOC) | |
| docs: $(DOCTARGETS) | |
| install-all: docs pre-install-all do-install-all post-install-all | |
| pre-install-all:: pre-install-local pre-install-ext pre-install-doc | |
| do-install-all: $(PROGRAM) | |
| $(INSTRUBY) --make="$(MAKE)" $(INSTRUBY_ARGS) --install=all --rdoc-output="$(RDOCOUT)" | |
| post-install-all:: post-install-local post-install-ext post-install-doc | |
| @$(NULLCMD) | |
| install-nodoc: pre-install-nodoc do-install-nodoc post-install-nodoc | |
| pre-install-nodoc:: pre-install-local pre-install-ext | |
| do-install-nodoc: $(PREP) | |
| $(INSTRUBY) --make="$(MAKE)" $(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: $(PREP) | |
| $(INSTRUBY) --make="$(MAKE)" $(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: $(PREP) | |
| $(INSTRUBY) --make="$(MAKE)" $(INSTRUBY_ARGS) --install=ext | |
| post-install-ext:: post-install-ext-arch post-install-ext-comm | |
| install-arch: pre-install-arch do-install-arch post-install-arch | |
| pre-install-arch:: pre-install-bin pre-install-ext-arch | |
| do-install-arch: $(PREP) | |
| $(INSTRUBY) --make="$(MAKE)" $(INSTRUBY_ARGS) --install=bin --install=ext-arch | |
| post-install-arch:: post-install-bin post-install-ext-arch | |
| 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: $(PREP) | |
| $(INSTRUBY) --make="$(MAKE)" $(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: $(PREP) | |
| $(INSTRUBY) --make="$(MAKE)" $(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: $(PREP) | |
| $(INSTRUBY) --make="$(MAKE)" $(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: $(PREP) | |
| $(INSTRUBY) --make="$(MAKE)" $(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: $(PREP) | |
| $(INSTRUBY) --make="$(MAKE)" $(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: $(PREP) | |
| $(INSTRUBY) --make="$(MAKE)" $(INSTRUBY_ARGS) --install=man --mantype="$(MANTYPE)" | |
| post-install-man:: | |
| @$(NULLCMD) | |
| install-capi: capi pre-install-capi do-install-capi post-install-capi | |
| pre-install-capi:: install-prereq | |
| do-install-capi: $(PREP) | |
| $(INSTRUBY) --make="$(MAKE)" $(INSTRUBY_ARGS) --install=capi | |
| post-install-capi:: | |
| @$(NULLCMD) | |
| what-where: no-install | |
| no-install: no-install-$(INSTALLDOC) | |
| what-where-all: no-install-all | |
| no-install-all: pre-no-install-all dont-install-all post-no-install-all | |
| pre-no-install-all:: pre-no-install-local pre-no-install-ext pre-no-install-doc | |
| dont-install-all: $(PROGRAM) | |
| $(INSTRUBY) -n --make="$(MAKE)" $(INSTRUBY_ARGS) --install=all --rdoc-output="$(RDOCOUT)" | |
| post-no-install-all:: post-no-install-local post-no-install-ext post-no-install-doc | |
| @$(NULLCMD) | |
| 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: $(PREP) | |
| $(INSTRUBY) -n --make="$(MAKE)" $(INSTRUBY_ARGS) --mantype="$(MANTYPE)" | |
| post-no-install-nodoc:: post-no-install-local post-no-install-ext | |
| what-where-local: no-install-local | |
| 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: $(PREP) | |
| $(INSTRUBY) -n --make="$(MAKE)" $(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: 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: $(PREP) | |
| $(INSTRUBY) -n --make="$(MAKE)" $(INSTRUBY_ARGS) --install=ext | |
| post-no-install-ext:: post-no-install-ext-arch post-no-install-ext-comm | |
| 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: $(PREP) | |
| $(INSTRUBY) -n --make="$(MAKE)" $(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: $(PREP) | |
| $(INSTRUBY) -n --make="$(MAKE)" $(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: $(PREP) | |
| $(INSTRUBY) -n --make="$(MAKE)" $(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: $(PREP) | |
| $(INSTRUBY) -n --make="$(MAKE)" $(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: $(PREP) | |
| $(INSTRUBY) -n --make="$(MAKE)" $(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: $(PREP) | |
| $(INSTRUBY) -n --make="$(MAKE)" $(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: $(PREP) | |
| $(INSTRUBY) -n --make="$(MAKE)" $(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) | |
| $(INSTRUBY) --make="$(MAKE)" $(INSTRUBY_ARGS) --install=rdoc --rdoc-output="$(RDOCOUT)" | |
| post-install-doc:: | |
| @$(NULLCMD) | |
| rdoc: PHONY main | |
| @echo Generating RDoc documentation | |
| $(XRUBY) "$(srcdir)/bin/rdoc" --no-force-update --all --ri --op "$(RDOCOUT)" $(RDOCFLAGS) "$(srcdir)" | |
| nodoc: 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:: $(PREP) | |
| $(INSTRUBY) -n --make="$(MAKE)" $(INSTRUBY_ARGS) --install=rdoc --rdoc-output="$(RDOCOUT)" | |
| post-no-install-doc:: | |
| @$(NULLCMD) | |
| CLEAR_INSTALLED_LIST = clear-installed-list | |
| install-prereq: $(CLEAR_INSTALLED_LIST) PHONY | |
| clear-installed-list: PHONY | |
| @> $(INSTALLED_LIST) set MAKE="$(MAKE)" | |
| clean: clean-ext clean-local clean-enc clean-golf clean-rdoc clean-extout | |
| clean-local:: PHONY | |
| @$(RM) $(OBJS) $(MINIOBJS) $(MAINOBJ) $(LIBRUBY_A) $(LIBRUBY_SO) $(LIBRUBY) $(LIBRUBY_ALIASES) | |
| @$(RM) $(PROGRAM) $(WPROGRAM) miniruby$(EXEEXT) dmyext.$(OBJEXT) $(ARCHFILE) .*.time | |
| @$(RM) *.inc y.tab.c y.output encdb.h transdb.h | |
| clean-ext:: PHONY | |
| clean-golf: PHONY | |
| @$(RM) $(GORUBY)$(EXEEXT) $(GOLFOBJS) | |
| clean-rdoc: PHONY | |
| clean-extout: PHONY | |
| @-$(RMDIRS) $(EXTOUT)/$(arch) | |
| distclean: distclean-ext distclean-local distclean-enc distclean-golf distclean-extout | |
| distclean-local:: clean-local | |
| @$(RM) $(MKFILES) rbconfig.rb yasmdata.rb encdb.h | |
| @$(RM) config.cache config.log config.status config.status.lineno $(PRELUDES) | |
| @$(RM) *~ *.bak *.stackdump core *.core gmon.out $(PREP) | |
| distclean-ext:: PHONY | |
| distclean-golf: clean-golf | |
| @$(RM) $(GOLFPRELUDES) | |
| distclean-rdoc: PHONY | |
| distclean-extout: clean-extout | |
| @-$(RMDIRS) $(EXTOUT) | |
| realclean:: realclean-ext realclean-local realclean-enc realclean-golf realclean-extout | |
| realclean-local:: distclean-local | |
| @$(RM) parse.c parse.h lex.c newline.c revision.h id.h | |
| realclean-ext:: | |
| realclean-golf: distclean-golf | |
| realclean-extout: distclean-extout | |
| clean-enc distclean-enc realclean-enc: | |
| @echo $(@:-enc=ing) encodings | |
| @-$(MAKE) -f $(ENC_MK) $(MFLAGS) $(@:-enc=) | |
| check: test test-all | |
| check-ruby: test test-ruby | |
| btest: miniruby$(EXEEXT) $(TEST_RUNNABLE)-btest | |
| no-btest: PHONY | |
| yes-btest: PHONY | |
| $(BOOTSTRAPRUBY) "$(srcdir)/bootstraptest/runner.rb" --ruby="$(MINIRUBY)" $(OPTS) | |
| btest-ruby: miniruby$(EXEEXT) $(RBCONFIG) $(PROGRAM) $(TEST_RUNNABLE)-btest-ruby | |
| no-btest-ruby: PHONY | |
| yes-btest-ruby: PHONY | |
| @$(RUNRUBY) "$(srcdir)/bootstraptest/runner.rb" --ruby="$(PROGRAM) -I$(srcdir)/lib" -q $(OPTS) | |
| test-sample: miniruby$(EXEEXT) $(RBCONFIG) $(PROGRAM) $(TEST_RUNNABLE)-test-sample | |
| no-test-sample: PHONY | |
| yes-test-sample: PHONY | |
| @$(RUNRUBY) $(srcdir)/tool/rubytest.rb | |
| test-knownbugs: test-knownbug | |
| test-knownbug: miniruby$(EXEEXT) $(PROGRAM) $(RBCONFIG) $(TEST_RUNNABLE)-test-knownbug | |
| no-test-knownbug: PHONY | |
| yes-test-knownbug: PHONY | |
| -$(RUNRUBY) "$(srcdir)/bootstraptest/runner.rb" --ruby="$(PROGRAM)" $(OPTS) $(srcdir)/KNOWNBUGS.rb | |
| test: test-sample btest-ruby test-knownbug | |
| test-all: $(TEST_RUNNABLE)-test-all | |
| no-test-all: PHONY | |
| yes-test-all: PHONY | |
| $(RUNRUBY) "$(srcdir)/test/runner.rb" $(TESTS) | |
| test-ruby: $(TEST_RUNNABLE)-test-ruby | |
| no-test-ruby: PHONY | |
| yes-test-ruby: PHONY | |
| $(RUNRUBY) "$(srcdir)/test/runner.rb" ruby | |
| extconf: $(PREP) | |
| $(MAKEDIRS) "$(EXTCONFDIR)" | |
| $(RUNRUBY) -C "$(EXTCONFDIR)" $(EXTCONF) $(EXTCONFARGS) | |
| $(RBCONFIG): $(srcdir)/tool/mkconfig.rb config.status $(srcdir)/version.h $(PREP) | |
| @$(MINIRUBY) $(srcdir)/tool/mkconfig.rb -timestamp=$@ \ | |
| -install_name=$(RUBY_INSTALL_NAME) \ | |
| -destdir=$(DESTDIR) \ | |
| -so_name=$(RUBY_SO_NAME) rbconfig.rb | |
| encs: enc trans | |
| encs enc trans: $(ENC_MK) $(LIBRUBY) $(PREP) | |
| $(MAKE) -f $(ENC_MK) RUBY="$(MINIRUBY)" MINIRUBY="$(MINIRUBY)" $(MFLAGS) $@ | |
| enc: {$(VPATH)}encdb.h | |
| trans: {$(VPATH)}transdb.h | |
| $(ENC_MK): $(srcdir)/enc/make_encmake.rb $(srcdir)/enc/Makefile.in $(srcdir)/enc/depend \ | |
| $(srcdir)/lib/mkmf.rb $(RBCONFIG) | |
| $(MINIRUBY) $(srcdir)/enc/make_encmake.rb --builtin-encs="$(BUILTIN_ENCOBJS)" --builtin-transes="$(BUILTIN_TRANSOBJS)" $@ $(ENCS) | |
| .PRECIOUS: $(MKFILES) | |
| .PHONY: PHONY all fake prereq incs srcs preludes help | |
| .PHONY: test install install-nodoc install-doc dist | |
| .PHONY: loadpath golf capi rdoc install-prereq clear-installed-list | |
| .PHONY: clean clean-ext clean-local clean-enc clean-golf clean-rdoc clean-extout | |
| .PHONY: distclean distclean-ext distclean-local distclean-enc distclean-golf distclean-extout | |
| .PHONY: realclean realclean-ext realclean-local realclean-enc realclean-golf realclean-extout | |
| .PHONY: check test test-all btest btest-ruby test-sample test-knownbug | |
| .PHONY: run runruby parse benchmark benchmark-each tbench gdb gdb-ruby | |
| .PHONY: update-mspec update-rubyspec test-rubyspec | |
| PHONY: | |
| {$(VPATH)}parse.c: {$(VPATH)}parse.y $(srcdir)/tool/ytab.sed | |
| parse.h {$(VPATH)}parse.h: {$(VPATH)}parse.c | |
| {$(srcdir)}.y.c: | |
| $(YACC) -d $(YFLAGS) -o y.tab.c $(SRC_FILE) | |
| sed -f $(srcdir)/tool/ytab.sed -e "/^#/s!y\.tab\.c!$@!" y.tab.c > $@.new | |
| @$(MV) $@.new $@ | |
| sed -e "/^#line.*y\.tab\.h/d;/^#line.*parse\.y/d" y.tab.h > $(@:.c=.h).new | |
| @$(IFCHANGE) $(@:.c=.h) $(@:.c=.h).new | |
| @$(RM) y.tab.c y.tab.h | |
| acosh.$(OBJEXT): {$(VPATH)}acosh.c | |
| alloca.$(OBJEXT): {$(VPATH)}alloca.c {$(VPATH)}config.h | |
| crypt.$(OBJEXT): {$(VPATH)}crypt.c | |
| dup2.$(OBJEXT): {$(VPATH)}dup2.c | |
| erf.$(OBJEXT): {$(VPATH)}erf.c | |
| finite.$(OBJEXT): {$(VPATH)}finite.c | |
| flock.$(OBJEXT): {$(VPATH)}flock.c | |
| memcmp.$(OBJEXT): {$(VPATH)}memcmp.c | |
| memmove.$(OBJEXT): {$(VPATH)}memmove.c | |
| mkdir.$(OBJEXT): {$(VPATH)}mkdir.c | |
| strchr.$(OBJEXT): {$(VPATH)}strchr.c | |
| strdup.$(OBJEXT): {$(VPATH)}strdup.c | |
| strerror.$(OBJEXT): {$(VPATH)}strerror.c | |
| strstr.$(OBJEXT): {$(VPATH)}strstr.c | |
| strtod.$(OBJEXT): {$(VPATH)}strtod.c | |
| strtol.$(OBJEXT): {$(VPATH)}strtol.c | |
| nt.$(OBJEXT): {$(VPATH)}nt.c | |
| os2.$(OBJEXT): {$(VPATH)}os2.c | |
| dl_os2.$(OBJEXT): {$(VPATH)}dl_os2.c | |
| ia64.$(OBJEXT): {$(VPATH)}ia64.s | |
| $(CC) $(CFLAGS) -c $< | |
| win32.$(OBJEXT): {$(VPATH)}win32.c $(RUBY_H_INCLUDES) | |
| ### | |
| RUBY_H_INCLUDES = {$(VPATH)}ruby.h {$(VPATH)}config.h {$(VPATH)}defines.h \ | |
| {$(VPATH)}intern.h {$(VPATH)}missing.h {$(VPATH)}st.h | |
| ENCODING_H_INCLUDES= {$(VPATH)}encoding.h {$(VPATH)}oniguruma.h | |
| ID_H_INCLUDES = {$(VPATH)}id.h | |
| VM_CORE_H_INCLUDES = {$(VPATH)}vm_core.h {$(VPATH)}vm_opts.h \ | |
| {$(VPATH)}thread_$(THREAD_MODEL).h \ | |
| {$(VPATH)}node.h {$(VPATH)}method.h $(ID_H_INCLUDES) | |
| array.$(OBJEXT): {$(VPATH)}array.c $(RUBY_H_INCLUDES) {$(VPATH)}util.h | |
| bignum.$(OBJEXT): {$(VPATH)}bignum.c $(RUBY_H_INCLUDES) {$(VPATH)}util.h | |
| class.$(OBJEXT): {$(VPATH)}class.c $(RUBY_H_INCLUDES) \ | |
| $(VM_CORE_H_INCLUDES) {$(VPATH)}debug.h | |
| compar.$(OBJEXT): {$(VPATH)}compar.c $(RUBY_H_INCLUDES) | |
| complex.$(OBJEXT): {$(VPATH)}complex.c $(RUBY_H_INCLUDES) | |
| dir.$(OBJEXT): {$(VPATH)}dir.c $(RUBY_H_INCLUDES) {$(VPATH)}util.h \ | |
| $(ENCODING_H_INCLUDES) | |
| dln.$(OBJEXT): {$(VPATH)}dln.c {$(VPATH)}dln.h $(RUBY_H_INCLUDES) | |
| dln_find.$(OBJEXT): {$(VPATH)}dln_find.c {$(VPATH)}dln.h $(RUBY_H_INCLUDES) | |
| dmydln.$(OBJEXT): {$(VPATH)}dmydln.c dln.$(OBJEXT) | |
| dmyext.$(OBJEXT): {$(VPATH)}dmyext.c | |
| dmyencoding.$(OBJEXT): {$(VPATH)}dmyencoding.c $(RUBY_H_INCLUDES) \ | |
| {$(VPATH)}regenc.h {$(VPATH)}util.h $(ENCODING_H_INCLUDES) \ | |
| {$(VPATH)}encoding.c | |
| encoding.$(OBJEXT): {$(VPATH)}encoding.c $(RUBY_H_INCLUDES) \ | |
| $(ENCODING_H_INCLUDES) {$(VPATH)}regenc.h {$(VPATH)}util.h | |
| enum.$(OBJEXT): {$(VPATH)}enum.c $(RUBY_H_INCLUDES) {$(VPATH)}node.h \ | |
| {$(VPATH)}util.h | |
| enumerator.$(OBJEXT): {$(VPATH)}enumerator.c $(RUBY_H_INCLUDES) | |
| error.$(OBJEXT): {$(VPATH)}error.c {$(VPATH)}known_errors.inc \ | |
| $(RUBY_H_INCLUDES) $(VM_CORE_H_INCLUDES) $(ENCODING_H_INCLUDES) \ | |
| {$(VPATH)}debug.h | |
| eval.$(OBJEXT): {$(VPATH)}eval.c {$(VPATH)}eval_intern.h {$(VPATH)}vm.h \ | |
| $(RUBY_H_INCLUDES) $(VM_CORE_H_INCLUDES) {$(VPATH)}eval_error.c \ | |
| {$(VPATH)}eval_jump.c {$(VPATH)}debug.h {$(VPATH)}gc.h {$(VPATH)}iseq.h | |
| load.$(OBJEXT): {$(VPATH)}load.c {$(VPATH)}eval_intern.h \ | |
| {$(VPATH)}util.h $(RUBY_H_INCLUDES) $(VM_CORE_H_INCLUDES) \ | |
| {$(VPATH)}dln.h {$(VPATH)}debug.h | |
| file.$(OBJEXT): {$(VPATH)}file.c $(RUBY_H_INCLUDES) {$(VPATH)}io.h \ | |
| $(ENCODING_H_INCLUDES) {$(VPATH)}util.h {$(VPATH)}dln.h | |
| gc.$(OBJEXT): {$(VPATH)}gc.c $(RUBY_H_INCLUDES) {$(VPATH)}re.h \ | |
| {$(VPATH)}regex.h $(ENCODING_H_INCLUDES) $(VM_CORE_H_INCLUDES) \ | |
| {$(VPATH)}gc.h {$(VPATH)}io.h {$(VPATH)}eval_intern.h {$(VPATH)}util.h \ | |
| {$(VPATH)}debug.h | |
| hash.$(OBJEXT): {$(VPATH)}hash.c $(RUBY_H_INCLUDES) {$(VPATH)}util.h | |
| inits.$(OBJEXT): {$(VPATH)}inits.c $(RUBY_H_INCLUDES) | |
| io.$(OBJEXT): {$(VPATH)}io.c $(RUBY_H_INCLUDES) {$(VPATH)}io.h \ | |
| {$(VPATH)}util.h $(ENCODING_H_INCLUDES) {$(VPATH)}dln.h | |
| main.$(OBJEXT): {$(VPATH)}main.c $(RUBY_H_INCLUDES) {$(VPATH)}debug.h \ | |
| {$(VPATH)}node.h | |
| marshal.$(OBJEXT): {$(VPATH)}marshal.c $(RUBY_H_INCLUDES) {$(VPATH)}io.h \ | |
| $(ENCODING_H_INCLUDES) {$(VPATH)}util.h | |
| math.$(OBJEXT): {$(VPATH)}math.c $(RUBY_H_INCLUDES) | |
| node.$(OBJEXT): {$(VPATH)}node.c $(RUBY_H_INCLUDES) \ | |
| $(VM_CORE_H_INCLUDES) | |
| numeric.$(OBJEXT): {$(VPATH)}numeric.c $(RUBY_H_INCLUDES) \ | |
| {$(VPATH)}util.h $(ENCODING_H_INCLUDES) | |
| object.$(OBJEXT): {$(VPATH)}object.c $(RUBY_H_INCLUDES) {$(VPATH)}util.h | |
| pack.$(OBJEXT): {$(VPATH)}pack.c $(RUBY_H_INCLUDES) {$(VPATH)}encoding.h \ | |
| {$(VPATH)}oniguruma.h | |
| parse.$(OBJEXT): {$(VPATH)}parse.c $(RUBY_H_INCLUDES) {$(VPATH)}node.h \ | |
| $(ENCODING_H_INCLUDES) $(ID_H_INCLUDES) {$(VPATH)}regenc.h \ | |
| {$(VPATH)}regex.h {$(VPATH)}util.h {$(VPATH)}lex.c \ | |
| {$(VPATH)}defs/keywords {$(VPATH)}id.c {$(VPATH)}parse.y \ | |
| {$(VPATH)}parse.h | |
| proc.$(OBJEXT): {$(VPATH)}proc.c {$(VPATH)}eval_intern.h \ | |
| $(RUBY_H_INCLUDES) {$(VPATH)}gc.h $(VM_CORE_H_INCLUDES) \ | |
| {$(VPATH)}debug.h | |
| process.$(OBJEXT): {$(VPATH)}process.c $(RUBY_H_INCLUDES) \ | |
| {$(VPATH)}util.h {$(VPATH)}io.h $(ENCODING_H_INCLUDES) {$(VPATH)}dln.h \ | |
| $(VM_CORE_H_INCLUDES) {$(VPATH)}debug.h | |
| random.$(OBJEXT): {$(VPATH)}random.c $(RUBY_H_INCLUDES) | |
| range.$(OBJEXT): {$(VPATH)}range.c $(RUBY_H_INCLUDES) \ | |
| $(ENCODING_H_INCLUDES) | |
| rational.$(OBJEXT): {$(VPATH)}rational.c $(RUBY_H_INCLUDES) | |
| re.$(OBJEXT): {$(VPATH)}re.c $(RUBY_H_INCLUDES) {$(VPATH)}re.h \ | |
| {$(VPATH)}regex.h $(ENCODING_H_INCLUDES) {$(VPATH)}util.h \ | |
| {$(VPATH)}regint.h {$(VPATH)}regenc.h | |
| regcomp.$(OBJEXT): {$(VPATH)}regcomp.c {$(VPATH)}regparse.h \ | |
| {$(VPATH)}regint.h {$(VPATH)}regenc.h {$(VPATH)}oniguruma.h \ | |
| $(RUBY_H_INCLUDES) | |
| regenc.$(OBJEXT): {$(VPATH)}regenc.c {$(VPATH)}regint.h \ | |
| {$(VPATH)}regenc.h {$(VPATH)}oniguruma.h $(RUBY_H_INCLUDES) | |
| regerror.$(OBJEXT): {$(VPATH)}regerror.c {$(VPATH)}regint.h \ | |
| {$(VPATH)}regenc.h {$(VPATH)}oniguruma.h $(RUBY_H_INCLUDES) | |
| regexec.$(OBJEXT): {$(VPATH)}regexec.c {$(VPATH)}regint.h \ | |
| {$(VPATH)}regenc.h {$(VPATH)}oniguruma.h $(RUBY_H_INCLUDES) | |
| regparse.$(OBJEXT): {$(VPATH)}regparse.c {$(VPATH)}regparse.h \ | |
| {$(VPATH)}regint.h {$(VPATH)}regenc.h {$(VPATH)}oniguruma.h \ | |
| $(RUBY_H_INCLUDES) | |
| regsyntax.$(OBJEXT): {$(VPATH)}regsyntax.c {$(VPATH)}regint.h \ | |
| {$(VPATH)}regenc.h {$(VPATH)}oniguruma.h $(RUBY_H_INCLUDES) | |
| ruby.$(OBJEXT): {$(VPATH)}ruby.c $(RUBY_H_INCLUDES) {$(VPATH)}util.h \ | |
| $(ENCODING_H_INCLUDES) {$(VPATH)}eval_intern.h $(VM_CORE_H_INCLUDES) \ | |
| {$(VPATH)}dln.h {$(VPATH)}debug.h | |
| safe.$(OBJEXT): {$(VPATH)}safe.c $(RUBY_H_INCLUDES) \ | |
| $(VM_CORE_H_INCLUDES) {$(VPATH)}debug.h | |
| signal.$(OBJEXT): {$(VPATH)}signal.c $(RUBY_H_INCLUDES) \ | |
| $(VM_CORE_H_INCLUDES) {$(VPATH)}debug.h | |
| sprintf.$(OBJEXT): {$(VPATH)}sprintf.c $(RUBY_H_INCLUDES) {$(VPATH)}re.h \ | |
| {$(VPATH)}regex.h {$(VPATH)}vsnprintf.c $(ENCODING_H_INCLUDES) | |
| st.$(OBJEXT): {$(VPATH)}st.c {$(VPATH)}config.h {$(VPATH)}defines.h \ | |
| {$(VPATH)}st.h {$(VPATH)}ruby.h {$(VPATH)}missing.h {$(VPATH)}intern.h | |
| strftime.$(OBJEXT): {$(VPATH)}strftime.c {$(VPATH)}ruby.h \ | |
| {$(VPATH)}config.h {$(VPATH)}defines.h {$(VPATH)}missing.h \ | |
| {$(VPATH)}intern.h {$(VPATH)}st.h {$(VPATH)}timev.h | |
| string.$(OBJEXT): {$(VPATH)}string.c $(RUBY_H_INCLUDES) {$(VPATH)}re.h \ | |
| {$(VPATH)}regex.h $(ENCODING_H_INCLUDES) | |
| struct.$(OBJEXT): {$(VPATH)}struct.c $(RUBY_H_INCLUDES) | |
| thread.$(OBJEXT): {$(VPATH)}thread.c {$(VPATH)}eval_intern.h \ | |
| $(RUBY_H_INCLUDES) {$(VPATH)}gc.h $(VM_CORE_H_INCLUDES) \ | |
| {$(VPATH)}debug.h {$(VPATH)}thread_$(THREAD_MODEL).c | |
| transcode.$(OBJEXT): {$(VPATH)}transcode.c $(RUBY_H_INCLUDES) \ | |
| $(ENCODING_H_INCLUDES) {$(VPATH)}transcode_data.h | |
| cont.$(OBJEXT): {$(VPATH)}cont.c $(RUBY_H_INCLUDES) \ | |
| $(VM_CORE_H_INCLUDES) {$(VPATH)}gc.h {$(VPATH)}eval_intern.h \ | |
| {$(VPATH)}debug.h | |
| time.$(OBJEXT): {$(VPATH)}time.c $(RUBY_H_INCLUDES) \ | |
| $(ENCODING_H_INCLUDES) {$(VPATH)}timev.h | |
| util.$(OBJEXT): {$(VPATH)}util.c $(RUBY_H_INCLUDES) {$(VPATH)}util.h | |
| variable.$(OBJEXT): {$(VPATH)}variable.c $(RUBY_H_INCLUDES) \ | |
| {$(VPATH)}node.h {$(VPATH)}util.h {$(VPATH)}encoding.h \ | |
| {$(VPATH)}oniguruma.h | |
| version.$(OBJEXT): {$(VPATH)}version.c $(RUBY_H_INCLUDES) \ | |
| {$(VPATH)}version.h $(srcdir)/version.h $(srcdir)/revision.h {$(VPATH)}config.h | |
| dmyversion.$(OBJEXT): {$(VPATH)}dmyversion.c version.$(OBJEXT) | |
| compile.$(OBJEXT): {$(VPATH)}compile.c {$(VPATH)}iseq.h \ | |
| $(RUBY_H_INCLUDES) $(VM_CORE_H_INCLUDES) {$(VPATH)}insns.inc \ | |
| {$(VPATH)}insns_info.inc {$(VPATH)}optinsn.inc {$(VPATH)}debug.h \ | |
| {$(VPATH)}optunifs.inc {$(VPATH)}opt_sc.inc {$(VPATH)}insns.inc | |
| iseq.$(OBJEXT): {$(VPATH)}iseq.c {$(VPATH)}gc.h {$(VPATH)}iseq.h \ | |
| $(RUBY_H_INCLUDES) $(VM_CORE_H_INCLUDES) {$(VPATH)}insns.inc \ | |
| {$(VPATH)}insns_info.inc {$(VPATH)}node_name.inc {$(VPATH)}debug.h | |
| vm.$(OBJEXT): {$(VPATH)}vm.c {$(VPATH)}gc.h {$(VPATH)}iseq.h \ | |
| {$(VPATH)}eval_intern.h $(RUBY_H_INCLUDES) $(ENCODING_H_INCLUDES) \ | |
| $(VM_CORE_H_INCLUDES) {$(VPATH)}vm_method.c {$(VPATH)}vm_eval.c \ | |
| {$(VPATH)}vm_insnhelper.c {$(VPATH)}vm_insnhelper.h {$(VPATH)}vm_exec.c \ | |
| {$(VPATH)}vm_exec.h {$(VPATH)}insns.def {$(VPATH)}vmtc.inc \ | |
| {$(VPATH)}vm.inc {$(VPATH)}insns.inc {$(VPATH)}debug.h | |
| vm_dump.$(OBJEXT): {$(VPATH)}vm_dump.c $(RUBY_H_INCLUDES) \ | |
| $(VM_CORE_H_INCLUDES) {$(VPATH)}debug.h | |
| debug.$(OBJEXT): {$(VPATH)}debug.c $(RUBY_H_INCLUDES) \ | |
| $(ENCODING_H_INCLUDES) $(VM_CORE_H_INCLUDES) {$(VPATH)}eval_intern.h \ | |
| {$(VPATH)}util.h {$(VPATH)}debug.h | |
| id.$(OBJEXT): {$(VPATH)}id.c $(RUBY_H_INCLUDES) $(ID_H_INCLUDES) | |
| miniprelude.$(OBJEXT): {$(VPATH)}miniprelude.c $(RUBY_H_INCLUDES) \ | |
| $(VM_CORE_H_INCLUDES) {$(VPATH)}debug.h | |
| prelude.$(OBJEXT): {$(VPATH)}prelude.c $(RUBY_H_INCLUDES) \ | |
| $(VM_CORE_H_INCLUDES) {$(VPATH)}debug.h | |
| golf_prelude.$(OBJEXT): {$(VPATH)}golf_prelude.c $(RUBY_H_INCLUDES) \ | |
| $(VM_CORE_H_INCLUDES) {$(VPATH)}debug.h | |
| goruby.$(OBJEXT): {$(VPATH)}goruby.c {$(VPATH)}main.c $(RUBY_H_INCLUDES) \ | |
| {$(VPATH)}debug.h {$(VPATH)}node.h | |
| ascii.$(OBJEXT): {$(VPATH)}ascii.c {$(VPATH)}regenc.h {$(VPATH)}config.h \ | |
| {$(VPATH)}defines.h {$(VPATH)}oniguruma.h | |
| us_ascii.$(OBJEXT): {$(VPATH)}us_ascii.c {$(VPATH)}regenc.h \ | |
| {$(VPATH)}config.h {$(VPATH)}defines.h {$(VPATH)}oniguruma.h | |
| unicode.$(OBJEXT): {$(VPATH)}unicode.c {$(VPATH)}regint.h \ | |
| {$(VPATH)}config.h {$(VPATH)}defines.h {$(VPATH)}regenc.h \ | |
| {$(VPATH)}oniguruma.h {$(VPATH)}st.h {$(VPATH)}ruby.h \ | |
| {$(VPATH)}missing.h {$(VPATH)}intern.h {$(VPATH)}enc/unicode/name2ctype.h | |
| utf_8.$(OBJEXT): {$(VPATH)}utf_8.c {$(VPATH)}regenc.h {$(VPATH)}config.h \ | |
| {$(VPATH)}defines.h {$(VPATH)}oniguruma.h | |
| newline.c: $(srcdir)/enc/trans/newline.trans $(srcdir)/tool/transcode-tblgen.rb | |
| $(BASERUBY) "$(srcdir)/tool/transcode-tblgen.rb" -vo newline.c $(srcdir)/enc/trans/newline.trans | |
| newline.$(OBJEXT): {$(VPATH)}newline.c {$(VPATH)}defines.h \ | |
| {$(VPATH)}intern.h {$(VPATH)}missing.h {$(VPATH)}st.h \ | |
| {$(VPATH)}transcode_data.h {$(VPATH)}ruby.h {$(VPATH)}config.h | |
| INSNS2VMOPT = --srcdir="$(srcdir)" | |
| {$(VPATH)}minsns.inc: $(srcdir)/template/minsns.inc.tmpl | |
| {$(VPATH)}opt_sc.inc: $(srcdir)/template/opt_sc.inc.tmpl | |
| {$(VPATH)}optinsn.inc: $(srcdir)/template/optinsn.inc.tmpl | |
| {$(VPATH)}optunifs.inc: $(srcdir)/template/optunifs.inc.tmpl | |
| {$(VPATH)}insns.inc: $(srcdir)/template/insns.inc.tmpl | |
| {$(VPATH)}insns_info.inc: $(srcdir)/template/insns_info.inc.tmpl | |
| {$(VPATH)}vmtc.inc: $(srcdir)/template/vmtc.inc.tmpl | |
| {$(VPATH)}vm.inc: $(srcdir)/template/vm.inc.tmpl | |
| srcs: {$(VPATH)}parse.c {$(VPATH)}lex.c {$(VPATH)}newline.c srcs-ext srcs-enc | |
| EXT_SRCS = $(srcdir)/ext/ripper/ripper.c | |
| srcs-ext: $(EXT_SRCS) | |
| srcs-enc: $(ENC_MK) | |
| $(MAKE) -f $(ENC_MK) RUBY="$(MINIRUBY)" MINIRUBY="$(MINIRUBY)" $(MFLAGS) srcs | |
| incs: $(INSNS) {$(VPATH)}node_name.inc {$(VPATH)}encdb.h {$(VPATH)}transdb.h {$(VPATH)}known_errors.inc \ | |
| $(srcdir)/revision.h $(REVISION_H) enc/unicode/name2ctype.h | |
| insns: $(INSNS) | |
| id.h: parse.h $(srcdir)/tool/generic_erb.rb $(srcdir)/template/id.h.tmpl | |
| $(BASERUBY) $(srcdir)/tool/generic_erb.rb --output=$@ \ | |
| $(srcdir)/template/id.h.tmpl --vpath=$(VPATH) parse.h | |
| node_name.inc: {$(VPATH)}node.h | |
| $(BASERUBY) -n $(srcdir)/tool/node_name.rb $? > $@ | |
| encdb.h: $(PREP) $(srcdir)/tool/generic_erb.rb $(srcdir)/template/encdb.h.tmpl | |
| $(MINIRUBY) $(srcdir)/tool/generic_erb.rb -c -o $@ $(srcdir)/template/encdb.h.tmpl $(srcdir)/enc enc | |
| transdb.h: $(PREP) srcs-enc $(srcdir)/tool/generic_erb.rb $(srcdir)/template/transdb.h.tmpl | |
| $(MINIRUBY) $(srcdir)/tool/generic_erb.rb -c -o $@ $(srcdir)/template/transdb.h.tmpl $(srcdir)/enc/trans enc/trans | |
| known_errors.inc: $(srcdir)/template/known_errors.inc.tmpl $(srcdir)/defs/known_errors.def | |
| $(BASERUBY) $(srcdir)/tool/generic_erb.rb -c -o $@ $(srcdir)/template/known_errors.inc.tmpl $(srcdir)/defs/known_errors.def | |
| miniprelude.c: $(srcdir)/tool/compile_prelude.rb $(srcdir)/prelude.rb | |
| $(BASERUBY) -I$(srcdir) $(srcdir)/tool/compile_prelude.rb $(srcdir)/prelude.rb $@ | |
| prelude.c: $(srcdir)/tool/compile_prelude.rb $(RBCONFIG) \ | |
| $(srcdir)/lib/rubygems/defaults.rb $(srcdir)/lib/rubygems/custom_require.rb \ | |
| $(PRELUDE_SCRIPTS) $(PREP) | |
| $(COMPILE_PRELUDE) $(PRELUDE_SCRIPTS) $@ | |
| golf_prelude.c: $(srcdir)/tool/compile_prelude.rb $(RBCONFIG) $(srcdir)/prelude.rb $(srcdir)/golf_prelude.rb $(PREP) | |
| $(COMPILE_PRELUDE) $(srcdir)/golf_prelude.rb $@ | |
| prereq: incs srcs preludes | |
| preludes: {$(VPATH)}miniprelude.c | |
| preludes: {$(srcdir)}golf_prelude.c | |
| $(srcdir)/revision.h: | |
| @exit > $@ | |
| $(REVISION_H): $(srcdir)/version.h $(srcdir)/ChangeLog $(srcdir)/tool/file2lastrev.rb $(REVISION_FORCE) | |
| @-$(BASERUBY) $(srcdir)/tool/file2lastrev.rb --revision.h "$(srcdir)" > "$(srcdir)/revision.tmp" | |
| @$(IFCHANGE) "--timestamp=$@" "$(srcdir)/revision.h" "$(srcdir)/revision.tmp" | |
| $(EXT_SRCS): | |
| $(CHDIR) $(@D) && $(exec) $(MAKE) -f depend $(MFLAGS) top_srcdir=../.. srcdir=. RUBY=$(BASERUBY) | |
| ## | |
| run: miniruby$(EXEEXT) PHONY | |
| $(MINIRUBY) $(TESTRUN_SCRIPT) $(RUNOPT) | |
| runruby: $(PROGRAM) PHONY | |
| $(RUNRUBY) $(TESTRUN_SCRIPT) | |
| parse: miniruby$(EXEEXT) PHONY | |
| $(MINIRUBY) $(srcdir)/tool/parse.rb $(TESTRUN_SCRIPT) | |
| COMPARE_RUBY = $(BASERUBY) | |
| ITEM = | |
| OPTS = | |
| benchmark: $(PROGRAM) PHONY | |
| $(BASERUBY) $(srcdir)/benchmark/driver.rb -v \ | |
| --executables="$(COMPARE_RUBY); $(RUNRUBY)" \ | |
| --pattern='bm_' --directory=$(srcdir)/benchmark $(OPTS) | |
| benchmark-each: $(PROGRAM) PHONY | |
| $(BASERUBY) $(srcdir)/benchmark/driver.rb -v \ | |
| --executables="$(COMPARE_RUBY); $(RUNRUBY)" \ | |
| --pattern=$(ITEM) --directory=$(srcdir)/benchmark $(OPTS) | |
| tbench: $(PROGRAM) PHONY | |
| $(BASERUBY) $(srcdir)/benchmark/driver.rb -v \ | |
| --executables="$(COMPARE_RUBY); $(RUNRUBY)" \ | |
| --pattern='bmx_' --directory=$(srcdir)/benchmark $(OPTS) | |
| run.gdb: | |
| echo b ruby_debug_breakpoint > run.gdb | |
| echo '# handle SIGINT nostop' >> run.gdb | |
| echo '# handle SIGPIPE nostop' >> run.gdb | |
| echo '# b rb_longjmp' >> run.gdb | |
| echo source $(srcdir)/breakpoints.gdb >> run.gdb | |
| echo source $(srcdir)/.gdbinit >> run.gdb | |
| echo run >> run.gdb | |
| gdb: miniruby$(EXEEXT) run.gdb PHONY | |
| gdb -x run.gdb --quiet --args $(MINIRUBY) $(TESTRUN_SCRIPT) | |
| gdb-ruby: $(PROGRAM) run.gdb PHONY | |
| gdb -x run.gdb --quiet --args $(PROGRAM) $(TESTRUN_SCRIPT) | |
| dist: | |
| $(BASERUBY) $(srcdir)/tool/make-snapshot tmp $(RELNAME) | |
| up:: | |
| -@$(MAKE) $(MFLAGS) REVISION_FORCE=PHONY "$(REVISION_H)" | |
| info: info-program info-libruby_a info-libruby_so info-arch | |
| info-program: | |
| @echo PROGRAM=$(PROGRAM) | |
| info-libruby_a: | |
| @echo LIBRUBY_A=$(LIBRUBY_A) | |
| info-libruby_so: | |
| @echo LIBRUBY_SO=$(LIBRUBY_SO) | |
| info-arch: | |
| @echo arch=$(arch) | |
| help: PHONY | |
| @echo " Makefile of Ruby" | |
| @echo "" | |
| @echo "targets:" | |
| @echo " all (default): builds all of below" | |
| @echo " miniruby: builds only miniruby" | |
| @echo " encs: builds encodings" | |
| @echo " exts: builds extensions" | |
| @echo " main: builds encodings, extensions and ruby" | |
| @echo " docs: builds documents" | |
| @echo " run: runs test.rb by miniruby" | |
| @echo " runruby: runs test.rb by ruby you just built" | |
| @echo " gdb: runs test.rb by miniruby under gdb" | |
| @echo " gdb-ruby: runs test.rb by ruby under gdb" | |
| @echo " check: equals make test test-all" | |
| @echo " test: ruby core tests" | |
| @echo " test-all: all ruby tests" | |
| @echo " test-rubyspec run RubySpec test suite" | |
| @echo " update-rubyspec update local copy of RubySpec" | |
| @echo " benchmark benchmark this ruby and COMPARE_RUBY" | |
| @echo " install: install all ruby distributions" | |
| @echo " install-nodoc: install without rdoc" | |
| @echo " clean: clean built objects" | |
| @echo " golf: for golfers" | |
| @echo "" | |
| @echo "see DeveloperHowto for more detail: " | |
| @echo " http://redmine.ruby-lang.org/wiki/ruby/DeveloperHowto" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!./miniruby -s | |
| # avoid warnings with -d. | |
| $install_name ||= nil | |
| $so_name ||= nil | |
| # TODO: Fix below | |
| $destdir ||= nil | |
| srcdir = File.expand_path('../..', __FILE__) | |
| $:.replace [srcdir+"/lib"] unless defined?(CROSS_COMPILING) | |
| $:.unshift(".") | |
| require "fileutils" | |
| mkconfig = File.basename($0) | |
| rbconfig_rb = ARGV[0] || 'rbconfig.rb' | |
| unless File.directory?(dir = File.dirname(rbconfig_rb)) | |
| FileUtils.makedirs(dir, :verbose => true) | |
| end | |
| version = RUBY_VERSION | |
| config = "" | |
| def config.write(arg) | |
| concat(arg.to_s) | |
| end | |
| $stdout = config | |
| fast = {'prefix'=>TRUE, 'ruby_install_name'=>TRUE, 'INSTALL'=>TRUE, 'EXEEXT'=>TRUE} | |
| print %[ | |
| # This file was created by #{mkconfig} when ruby was built. Any | |
| # changes made to this file will be lost the next time ruby is built. | |
| module RbConfig | |
| RUBY_VERSION == "#{version}" or | |
| raise "ruby lib version (#{version}) doesn't match executable version (\#{RUBY_VERSION})" | |
| ] | |
| arch = RUBY_PLATFORM | |
| v_fast = [] | |
| v_others = [] | |
| vars = {} | |
| continued_name = nil | |
| continued_line = nil | |
| File.foreach "config.status" do |line| | |
| next if /^#/ =~ line | |
| name = nil | |
| case line | |
| when /^s([%,])@(\w+)@\1(?:\|\#_!!_\#\|)?(.*)\1/ | |
| name = $2 | |
| val = $3.gsub(/\\(?=,)/, '') | |
| when /^S\["(\w+)"\]\s*=\s*"(.*)"\s*(\\)?$/ | |
| name = $1 | |
| val = $2 | |
| if $3 | |
| continued_line = [] | |
| continued_line << val | |
| continued_name = name | |
| next | |
| end | |
| when /^"(.*)"\s*(\\)?$/ | |
| if continued_line | |
| continued_line << $1 | |
| next if $2 | |
| val = continued_line.join("") | |
| name = continued_name | |
| continued_line = nil | |
| end | |
| when /^(?:ac_given_)?INSTALL=(.*)/ | |
| v_fast << " CONFIG[\"INSTALL\"] = " + $1 + "\n" | |
| end | |
| if name | |
| case name | |
| when /^(?:ac_.*|configure_input|(?:top_)?srcdir|\w+OBJS)$/; next | |
| when /^(?:X|(?:MINI|RUN)RUBY$)/; next | |
| when /^(?:MAJOR|MINOR|TEENY)$/; next | |
| when /^RUBY_INSTALL_NAME$/; next if $install_name | |
| when /^RUBY_SO_NAME$/; next if $so_name | |
| when /^arch$/; if val.empty? then val = arch else arch = val end | |
| when /^sitearch/; val = '$(arch)' if val.empty? | |
| end | |
| case val | |
| when /^\$\(ac_\w+\)$/; next | |
| when /^\$\{ac_\w+\}$/; next | |
| when /^\$ac_\w+$/; next | |
| end | |
| if /^program_transform_name$/ =~ name | |
| val.sub!(/\As(\\?\W)(?:\^|\${1,2})\1\1(;|\z)/, '') | |
| if val.empty? | |
| $install_name ||= "ruby" | |
| next | |
| end | |
| unless $install_name | |
| $install_name = "ruby" | |
| val.gsub!(/\$\$/, '$') | |
| val.scan(%r[\G[\s;]*(/(?:\\.|[^/])*/)?([sy])(\\?\W)((?:(?!\3)(?:\\.|.))*)\3((?:(?!\3)(?:\\.|.))*)\3([gi]*)]) do | |
| |addr, cmd, sep, pat, rep, opt| | |
| if addr | |
| Regexp.new(addr[/\A\/(.*)\/\z/, 1]) =~ $install_name or next | |
| end | |
| case cmd | |
| when 's' | |
| pat = Regexp.new(pat, opt.include?('i')) | |
| if opt.include?('g') | |
| $install_name.gsub!(pat, rep) | |
| else | |
| $install_name.sub!(pat, rep) | |
| end | |
| when 'y' | |
| $install_name.tr!(Regexp.quote(pat), rep) | |
| end | |
| end | |
| end | |
| end | |
| if name == "configure_args" | |
| val.gsub!(/ +(?!-)/, "=") if /mswin32/ =~ RUBY_PLATFORM | |
| val.gsub!(/--with-out-ext/, "--without-ext") | |
| end | |
| val = val.gsub(/\$(?:\$|\{?(\w+)\}?)/) {$1 ? "$(#{$1})" : $&}.dump | |
| if /^prefix$/ =~ name | |
| val = "(TOPDIR || DESTDIR + #{val})" | |
| end | |
| v = " CONFIG[\"#{name}\"] #{vars[name] ? '<< "\n"' : '='} #{val}\n" | |
| vars[name] = true | |
| if fast[name] | |
| v_fast << v | |
| else | |
| v_others << v | |
| end | |
| case name | |
| when "ruby_version" | |
| version = val[/\A"(.*)"\z/, 1] | |
| end | |
| end | |
| # break if /^CEOF/ | |
| end | |
| drive = File::PATH_SEPARATOR == ';' | |
| prefix = "/lib/ruby/#{version}/#{arch}" | |
| print " TOPDIR = File.dirname(__FILE__).chomp!(#{prefix.dump})\n" | |
| # TODO: Fix below | |
| print " DESTDIR = ", ($destdir ? "\"#{$destdir}\"" : (drive ? "TOPDIR && TOPDIR[/\\A[a-z]:/i] || " : "")), "'' unless defined? DESTDIR\n" | |
| print " CONFIG = {}\n" | |
| print " CONFIG[\"DESTDIR\"] = DESTDIR\n" | |
| versions = {} | |
| IO.foreach(File.join(srcdir, "version.h")) do |l| | |
| m = /^\s*#\s*define\s+RUBY_(VERSION_(MAJOR|MINOR|TEENY)|PATCHLEVEL)\s+(-?\d+)/.match(l) | |
| if m | |
| versions[m[2]||m[1]] = m[3] | |
| break if versions.size == 4 | |
| end | |
| end | |
| %w[MAJOR MINOR TEENY PATCHLEVEL].each do |v| | |
| print " CONFIG[#{v.dump}] = #{versions[v].dump}\n" | |
| end | |
| dest = drive ? /= \"(?!\$[\(\{])(?:[a-z]:)?/i : /= \"(?!\$[\(\{])/ | |
| v_others.collect! do |x| | |
| if /^\s*CONFIG\["(?!abs_|old)[a-z]+(?:_prefix|dir)"\]/ === x | |
| x.sub(dest, '= "$(DESTDIR)') | |
| else | |
| x | |
| end | |
| end | |
| if $install_name | |
| v_fast << " CONFIG[\"ruby_install_name\"] = \"" + $install_name + "\"\n" | |
| v_fast << " CONFIG[\"RUBY_INSTALL_NAME\"] = \"" + $install_name + "\"\n" | |
| end | |
| if $so_name | |
| v_fast << " CONFIG[\"RUBY_SO_NAME\"] = \"" + $so_name + "\"\n" | |
| end | |
| print(*v_fast) | |
| print(*v_others) | |
| print <<EOS | |
| CONFIG["rubylibdir"] = "$(rubylibprefix)/$(ruby_version)" | |
| CONFIG["archdir"] = "$(rubylibdir)/$(arch)" | |
| CONFIG["sitelibdir"] = "$(sitedir)/$(ruby_version)" | |
| CONFIG["sitearchdir"] = "$(sitelibdir)/$(sitearch)" | |
| CONFIG["vendorlibdir"] = "$(vendordir)/$(ruby_version)" | |
| CONFIG["vendorarchdir"] = "$(vendorlibdir)/$(sitearch)" | |
| CONFIG["topdir"] = File.dirname(__FILE__) | |
| MAKEFILE_CONFIG = {} | |
| CONFIG.each{|k,v| MAKEFILE_CONFIG[k] = v.dup} | |
| def RbConfig::expand(val, config = CONFIG) | |
| newval = val.gsub(/\\$\\$|\\$\\(([^()]+)\\)|\\$\\{([^{}]+)\\}/) { | |
| var = $& | |
| if !(v = $1 || $2) | |
| '$' | |
| elsif key = config[v = v[/\\A[^:]+(?=(?::(.*?)=(.*))?\\z)/]] | |
| pat, sub = $1, $2 | |
| config[v] = false | |
| config[v] = RbConfig::expand(key, config) | |
| key = key.gsub(/\#{Regexp.quote(pat)}(?=\\s|\\z)/n) {sub} if pat | |
| key | |
| else | |
| var | |
| end | |
| } | |
| val.replace(newval) unless newval == val | |
| val | |
| end | |
| CONFIG.each_value do |val| | |
| RbConfig::expand(val) | |
| end | |
| # returns the absolute pathname of the ruby command. | |
| def RbConfig.ruby | |
| File.join( | |
| RbConfig::CONFIG["bindir"], | |
| RbConfig::CONFIG["ruby_install_name"] + RbConfig::CONFIG["EXEEXT"] | |
| ) | |
| end | |
| end | |
| Config = RbConfig # compatibility for ruby-1.8.4 and older. | |
| CROSS_COMPILING = nil unless defined? CROSS_COMPILING | |
| EOS | |
| $stdout = STDOUT | |
| mode = IO::RDWR|IO::CREAT | |
| mode |= IO::BINARY if defined?(IO::BINARY) | |
| open(rbconfig_rb, mode) do |f| | |
| if $timestamp and f.stat.size == config.size and f.read == config | |
| puts "#{rbconfig_rb} unchanged" | |
| else | |
| puts "#{rbconfig_rb} updated" | |
| f.rewind | |
| f.truncate(0) | |
| f.print(config) | |
| end | |
| end | |
| if String === $timestamp | |
| FileUtils.touch($timestamp) | |
| end | |
| # vi:set sw=2: |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment