mirror of
				https://github.com/ruby/ruby.git
				synced 2022-11-09 12:17:21 -05:00 
			
		
		
		
	 52d4a465a8
			
		
	
	
		52d4a465a8
		
	
	
	
	
		
			
			up at top-level. * .document: Moved doc/* entries to doc/.document * doc/.document: ditto git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@38312 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
		
			
				
	
	
		
			1036 lines
		
	
	
	
		
			39 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			1036 lines
		
	
	
	
		
			39 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| bin: $(PROGRAM) $(WPROGRAM)
 | |
| lib: $(LIBRUBY)
 | |
| dll: $(LIBRUBY_SO)
 | |
| 
 | |
| .SUFFIXES: .inc .h .c .y .i .$(DTRACE_EXT)
 | |
| 
 | |
| # V=0 quiet, V=1 verbose.  other values don't work.
 | |
| V = 0
 | |
| Q1 = $(V:1=)
 | |
| Q = $(Q1:0=@)
 | |
| ECHO = $(ECHO1:0=@echo)
 | |
| 
 | |
| RUBYLIB       = $(PATH_SEPARATOR)
 | |
| RUBYOPT       = -
 | |
| RUN_OPTS      = --disable-gems
 | |
| 
 | |
| 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
 | |
| PLATFORM_D    = ./$(PLATFORM_DIR)/.time
 | |
| RDOCOUT       = $(EXTOUT)/rdoc
 | |
| CAPIOUT       = doc/capi
 | |
| 
 | |
| DMYEXT	      = dmyext.$(OBJEXT)
 | |
| NORMALMAINOBJ = main.$(OBJEXT)
 | |
| MAINOBJ       = $(NORMALMAINOBJ)
 | |
| EXTOBJS	      =
 | |
| DLDOBJS	      = $(DMYEXT)
 | |
| EXTSOLIBS     =
 | |
| 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) \
 | |
| 		vm_backtrace.$(OBJEXT) \
 | |
| 		vm_trace.$(OBJEXT) \
 | |
| 		thread.$(OBJEXT) \
 | |
| 		cont.$(OBJEXT) \
 | |
| 		$(BUILTIN_ENCOBJS) \
 | |
| 		$(BUILTIN_TRANSOBJS) \
 | |
| 		$(MISSING)
 | |
| 
 | |
| EXPORTOBJS    = $(DLNOBJ) \
 | |
| 		encoding.$(OBJEXT) \
 | |
| 		version.$(OBJEXT) \
 | |
| 		$(COMMONOBJS)
 | |
| 
 | |
| OBJS          = $(EXPORTOBJS) prelude.$(OBJEXT)
 | |
| ALLOBJS       = $(NORMALMAINOBJ) $(MINIOBJS) $(COMMONOBJS) $(DMYEXT)
 | |
| 
 | |
| GOLFOBJS      = goruby.$(OBJEXT) golf_prelude.$(OBJEXT)
 | |
| 
 | |
| PRELUDE_SCRIPTS = $(srcdir)/prelude.rb $(srcdir)/enc/prelude.rb $(DEFAULT_PRELUDES)
 | |
| GEM_PRELUDE = $(srcdir)/gem_prelude.rb
 | |
| YES_GEM_PRELUDE = $(GEM_PRELUDE)
 | |
| NO_GEM_PRELUDE =
 | |
| 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="V=$(V) MINIRUBY='$(MINIRUBY)'" --
 | |
| INSTRUBY      =	$(SUDO) $(MINIRUBY) $(srcdir)/tool/rbinstall.rb
 | |
| INSTRUBY_ARGS =	$(SCRIPT_ARGS) \
 | |
| 		--data-mode=$(INSTALL_DATA_MODE) \
 | |
| 		--prog-mode=$(INSTALL_PROG_MODE) \
 | |
| 		--installed-list $(INSTALLED_LIST) \
 | |
| 		--mantype="$(MANTYPE)"
 | |
| 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: showflags main docs
 | |
| 
 | |
| main: showflags $(EXTSTATIC:static=lib)encs exts
 | |
| 	@$(NULLCMD)
 | |
| 
 | |
| .PHONY: showflags
 | |
| exts enc trans: showflags
 | |
| showflags:
 | |
| 	$(MESSAGE_BEGIN) \
 | |
| 	"	CC = $(CC)" \
 | |
| 	"	LD = $(LD)" \
 | |
| 	"	LDSHARED = $(LDSHARED)" \
 | |
| 	"	CFLAGS = $(CFLAGS)" \
 | |
| 	"	XCFLAGS = $(XCFLAGS)" \
 | |
| 	"	CPPFLAGS = $(CPPFLAGS)" \
 | |
| 	"	DLDFLAGS = $(DLDFLAGS)" \
 | |
| 	"	SOLIBS = $(SOLIBS)" \
 | |
| 	$(MESSAGE_END)
 | |
| 
 | |
| .PHONY: showconfig
 | |
| showconfig:
 | |
| 	@$(MESSAGE_BEGIN) \
 | |
| 	"$(configure_args)" \
 | |
| 	$(MESSAGE_END)
 | |
| 
 | |
| exts: build-ext
 | |
| 
 | |
| EXTS_MK = exts.mk
 | |
| $(EXTS_MK): $(MKFILES) all-incs $(PREP) $(RBCONFIG) $(LIBRUBY)
 | |
| 	$(ECHO) generating makefile $@
 | |
| 	$(Q)$(MINIRUBY) $(srcdir)/ext/extmk.rb --make="$(MAKE)" --command-output=$(EXTS_MK) $(EXTMK_ARGS) configure
 | |
| 
 | |
| configure-ext: $(EXTS_MK)
 | |
| 
 | |
| build-ext: $(EXTS_MK)
 | |
| 	$(Q)$(MAKE) -f $(EXTS_MK) $(MFLAGS) $(EXTSTATIC) LIBRUBY_EXTS=$(LIBRUBY_EXTS) ENCOBJS="$(ENCOBJS)"
 | |
| 
 | |
| $(MKMAIN_CMD): $(MKFILES) all-incs $(PREP) $(RBCONFIG) $(LIBRUBY)
 | |
| 	$(Q)$(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 $(ALLOBJS) $(ARCHFILE) $(DTRACE_OBJ)
 | |
| 
 | |
| objs: $(ALLOBJS)
 | |
| 
 | |
| GORUBY = go$(RUBY_INSTALL_NAME)
 | |
| golf: $(LIBRUBY) $(GOLFOBJS) PHONY
 | |
| 	$(Q) $(MAKE) $(MFLAGS) MAINOBJ="$(GOLFOBJS)" PROGRAM=$(GORUBY)$(EXEEXT) program
 | |
| capi: $(CAPIOUT)/.timestamp PHONY
 | |
| 
 | |
| $(CAPIOUT)/.timestamp: Doxyfile $(PREP)
 | |
| 	$(Q) $(MAKEDIRS) "$(@D)"
 | |
| 	$(ECHO) generating capi
 | |
| 	$(Q) $(DOXYGEN) -b
 | |
| 	$(Q) $(MINIRUBY) -e 'File.open(ARGV[0], "w"){|f| f.puts(Time.now)}' "$@"
 | |
| 
 | |
| Doxyfile: $(srcdir)/template/Doxyfile.tmpl $(PREP) $(srcdir)/tool/generic_erb.rb $(RBCONFIG)
 | |
| 	$(ECHO) generating $@
 | |
| 	$(Q) $(MINIRUBY) $(srcdir)/tool/generic_erb.rb -o $@ $(srcdir)/template/Doxyfile.tmpl \
 | |
| 	--srcdir="$(srcdir)" --miniruby="$(MINIRUBY)"
 | |
| 
 | |
| program: showflags $(PROGRAM)
 | |
| wprogram: showflags $(WPROGRAM)
 | |
| 
 | |
| $(PROGRAM) $(WPROGRAM): $(LIBRUBY) $(MAINOBJ) $(OBJS) $(EXTOBJS) $(SETUP) $(PREP)
 | |
| 
 | |
| $(LIBRUBY_A):	$(OBJS) $(MAINOBJ) $(DTRACE_OBJ) $(DTRACE_GLOMMED_OBJ) $(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)
 | |
| 	$(Q)$(RM) $@
 | |
| 	$(PURIFY) $(CC) $(MAINOBJ) $(DLDOBJS) $(EXTOBJS) $(LIBRUBY_A) $(MAINLIBS) $(EXTLIBS) $(LIBS) $(OUTFLAG)$@ $(LDFLAGS) $(XLDFLAGS)
 | |
| 
 | |
| ruby.imp: $(EXPORTOBJS)
 | |
| 	$(Q)$(NM) -Pgp $(EXPORTOBJS) | \
 | |
| 	awk 'BEGIN{print "#!"}; $$2~/^[BDT]$$/&&$$1!~/^(Init_|.*_threadptr_|\.)/{print $$1}' | \
 | |
| 	sort -u -o $@
 | |
| 
 | |
| install: install-$(INSTALLDOC)
 | |
| docs: $(DOCTARGETS)
 | |
| pkgconfig-data: $(ruby_pc)
 | |
| $(ruby_pc): $(srcdir)/template/ruby.pc.in config.status
 | |
| 
 | |
| 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: all
 | |
| 	$(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: main
 | |
| 	$(INSTRUBY) --make="$(MAKE)" $(INSTRUBY_ARGS)
 | |
| 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: $(PROGRAM)
 | |
| 	$(INSTRUBY) --make="$(MAKE)" $(INSTRUBY_ARGS) --install=local
 | |
| 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: exts
 | |
| 	$(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: main
 | |
| 	$(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: $(PROGRAM)
 | |
| 	$(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: exts
 | |
| 	$(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: exts
 | |
| 	$(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
 | |
| 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)
 | |
| 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
 | |
| 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
 | |
| 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
 | |
| 	$(Q) $(XRUBY) "$(srcdir)/bin/rdoc" --root "$(srcdir)" --page-dir "$(srcdir)/doc" --encoding=UTF-8 --no-force-update --all --ri --op "$(RDOCOUT)" --debug $(RDOCFLAGS) "$(srcdir)"
 | |
| 
 | |
| rdoc-coverage: PHONY main
 | |
| 	@echo Generating RDoc coverage report
 | |
| 	$(Q) $(XRUBY) "$(srcdir)/bin/rdoc" --root "$(srcdir)" --encoding=UTF-8 --all --quiet -C $(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-capi clean-extout clean-platform
 | |
| clean-local:: PHONY
 | |
| 	$(Q)$(RM) $(OBJS) $(MINIOBJS) $(MAINOBJ) $(LIBRUBY_A) $(LIBRUBY_SO) $(LIBRUBY) $(LIBRUBY_ALIASES)
 | |
| 	$(Q)$(RM) $(PROGRAM) $(WPROGRAM) miniruby$(EXEEXT) dmyext.$(OBJEXT) $(ARCHFILE) .*.time
 | |
| 	$(Q)$(RM) y.tab.c y.output encdb.h transdb.h prelude.c config.log rbconfig.rb $(ruby_pc) probes.h probes.$(OBJEXT) probes.stamp ruby-glommed.$(OBJEXT)
 | |
| clean-ext:: PHONY
 | |
| clean-golf: PHONY
 | |
| 	$(Q)$(RM) $(GORUBY)$(EXEEXT) $(GOLFOBJS)
 | |
| clean-rdoc: PHONY
 | |
| clean-capi: PHONY
 | |
| clean-platform: PHONY
 | |
| clean-extout: PHONY
 | |
| clean-docs: clean-rdoc clean-capi
 | |
| 
 | |
| distclean: distclean-ext distclean-local distclean-enc distclean-golf distclean-extout distclean-platform
 | |
| distclean-local:: clean-local
 | |
| 	$(Q)$(RM) $(MKFILES) yasmdata.rb *.inc
 | |
| 	$(Q)$(RM) config.cache config.status config.status.lineno $(PRELUDES)
 | |
| 	$(Q)$(RM) *~ *.bak *.stackdump core *.core gmon.out $(PREP)
 | |
| distclean-ext:: PHONY
 | |
| distclean-golf: clean-golf
 | |
| 	$(Q)$(RM) $(GOLFPRELUDES)
 | |
| distclean-rdoc: PHONY
 | |
| distclean-capi: PHONY
 | |
| distclean-extout: clean-extout
 | |
| distclean-platform: clean-platform
 | |
| 
 | |
| realclean:: realclean-ext realclean-local realclean-enc realclean-golf realclean-extout
 | |
| realclean-local:: distclean-local
 | |
| 	$(Q)$(RM) parse.c parse.h lex.c newline.c revision.h
 | |
| realclean-ext::
 | |
| realclean-golf: distclean-golf
 | |
| realclean-capi: PHONY
 | |
| realclean-extout: distclean-extout
 | |
| 
 | |
| clean-ext distclean-ext realclean-ext::
 | |
| 	$(Q)$(RM) $(EXTS_MK)
 | |
| 
 | |
| clean-enc distclean-enc realclean-enc: PHONY
 | |
| 
 | |
| check: main test test-all
 | |
| 	$(ECHO) check succeeded
 | |
| check-ruby: test test-ruby
 | |
| 
 | |
| btest: $(TEST_RUNNABLE)-btest
 | |
| no-btest: PHONY
 | |
| yes-btest: miniruby$(EXEEXT) PHONY
 | |
| 	$(BOOTSTRAPRUBY) "$(srcdir)/bootstraptest/runner.rb" --ruby="$(BTESTRUBY)" $(OPTS) $(TESTOPTS)
 | |
| 
 | |
| btest-ruby: $(TEST_RUNNABLE)-btest-ruby
 | |
| no-btest-ruby: PHONY
 | |
| yes-btest-ruby: prog PHONY
 | |
| 	$(Q)$(RUNRUBY) "$(srcdir)/bootstraptest/runner.rb" --ruby="$(PROGRAM) -I$(srcdir)/lib" -q $(OPTS) $(TESTOPTS)
 | |
| 
 | |
| test-sample: $(TEST_RUNNABLE)-test-sample
 | |
| no-test-sample: PHONY
 | |
| yes-test-sample: prog PHONY
 | |
| 	$(Q)$(RUNRUBY) $(srcdir)/tool/rubytest.rb $(OPTS) $(TESTOPTS)
 | |
| 
 | |
| test-knownbugs: test-knownbug
 | |
| test-knownbug: $(TEST_RUNNABLE)-test-knownbug
 | |
| no-test-knownbug: PHONY
 | |
| yes-test-knownbug: prog PHONY
 | |
| 	-$(RUNRUBY) "$(srcdir)/bootstraptest/runner.rb" --ruby="$(PROGRAM)" $(OPTS) $(TESTOPTS) $(srcdir)/KNOWNBUGS.rb
 | |
| 
 | |
| test: test-sample btest-ruby test-knownbug
 | |
| 
 | |
| test-all: $(TEST_RUNNABLE)-test-all
 | |
| yes-test-all: prog PHONY
 | |
| 	$(RUNRUBY) "$(srcdir)/test/runner.rb" --ruby="$(RUNRUBY)" $(TESTOPTS) $(TESTS)
 | |
| TESTS_BUILD = mkmf
 | |
| no-test-all: PHONY
 | |
| 	$(MINIRUBY) -I"$(srcdir)/lib" "$(srcdir)/test/runner.rb" $(TESTOPTS) $(TESTS_BUILD)
 | |
| 
 | |
| test-ruby: $(TEST_RUNNABLE)-test-ruby
 | |
| no-test-ruby: PHONY
 | |
| yes-test-ruby: prog encs PHONY
 | |
| 	$(RUNRUBY) "$(srcdir)/test/runner.rb" -q $(TESTOPTS) -- ruby -ext-
 | |
| 
 | |
| extconf: $(PREP)
 | |
| 	$(Q) $(MAKEDIRS) "$(EXTCONFDIR)"
 | |
| 	$(RUNRUBY) -C "$(EXTCONFDIR)" $(EXTCONF) $(EXTCONFARGS)
 | |
| 
 | |
| $(RBCONFIG): $(srcdir)/tool/mkconfig.rb config.status $(srcdir)/version.h $(PREP)
 | |
| 	$(Q)$(MINIRUBY) $(srcdir)/tool/mkconfig.rb -timestamp=$@ \
 | |
| 		-install_name=$(RUBY_INSTALL_NAME) \
 | |
| 		-so_name=$(RUBY_SO_NAME) rbconfig.rb
 | |
| 
 | |
| test-rubyspec-precheck:
 | |
| 
 | |
| test-rubyspec: test-rubyspec-precheck
 | |
| 	$(RUNRUBY) $(srcdir)/spec/mspec/bin/mspec run -B $(srcdir)/spec/default.mspec $(MSPECOPT)
 | |
| 
 | |
| RUNNABLE = $(LIBRUBY_RELATIVE:no=un)-runnable
 | |
| runnable: $(RUNNABLE) prog $(srcdir)/tool/mkrunnable.rb PHONY
 | |
| 	$(Q) $(MINIRUBY) $(srcdir)/tool/mkrunnable.rb -v $(EXTOUT)
 | |
| yes-runnable: PHONY
 | |
| 
 | |
| encs: enc trans
 | |
| libencs: libenc libtrans
 | |
| encs enc trans libencs libenc libtrans: showflags $(ENC_MK) $(LIBRUBY) $(PREP)
 | |
| 	$(ECHO) making $@
 | |
| 	$(Q) $(MAKE) -f $(ENC_MK) V="$(V)" \
 | |
| 		RUBY="$(MINIRUBY)" MINIRUBY="$(MINIRUBY)" \
 | |
| 		$(MFLAGS) $@
 | |
| 
 | |
| 
 | |
| libenc enc: {$(VPATH)}encdb.h
 | |
| libtrans trans: {$(VPATH)}transdb.h
 | |
| 
 | |
| $(ENC_MK): $(srcdir)/enc/make_encmake.rb $(srcdir)/enc/Makefile.in $(srcdir)/enc/depend \
 | |
| 	$(srcdir)/enc/encinit.c.erb $(srcdir)/lib/mkmf.rb $(RBCONFIG)
 | |
| 	$(ECHO) generating $@
 | |
| 	$(Q) $(MINIRUBY) $(srcdir)/enc/make_encmake.rb --builtin-encs="$(BUILTIN_ENCOBJS)" --builtin-transes="$(BUILTIN_TRANSOBJS)" --module$(EXTSTATIC) $@ $(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 {$(VPATH)}id.h
 | |
| {$(VPATH)}parse.h: {$(VPATH)}parse.c
 | |
| 
 | |
| {$(srcdir)}.y.c:
 | |
| 	$(ECHO) generating $@
 | |
| 	$(Q)$(BASERUBY) $(srcdir)/tool/id2token.rb --path-separator=$(PATH_SEPARATOR) --vpath=$(VPATH) id.h $(SRC_FILE) > parse.tmp.y
 | |
| 	$(Q)$(YACC) -d $(YFLAGS) -o y.tab.c parse.tmp.y
 | |
| 	$(Q)$(RM) parse.tmp.y
 | |
| 	$(Q)sed -f $(srcdir)/tool/ytab.sed -e "/^#/s!parse\.tmp\.[iy]!parse.y!" -e "/^#/s!y\.tab\.c!$@!" y.tab.c > $@.new
 | |
| 	$(Q)$(MV) $@.new $@
 | |
| 	$(Q)sed -e "/^#line.*y\.tab\.h/d;/^#line.*parse.*\.y/d" y.tab.h > $(@:.c=.h)
 | |
| 	$(Q)$(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
 | |
| setproctitle.$(OBJEXT): {$(VPATH)}setproctitle.c {$(VPATH)}util.h $(RUBY_H_INCLUDES)
 | |
| strchr.$(OBJEXT): {$(VPATH)}strchr.c
 | |
| strdup.$(OBJEXT): {$(VPATH)}strdup.c
 | |
| strerror.$(OBJEXT): {$(VPATH)}strerror.c
 | |
| strlcat.$(OBJEXT): {$(VPATH)}strlcat.c
 | |
| strlcpy.$(OBJEXT): {$(VPATH)}strlcpy.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 $<
 | |
| 
 | |
| $(PLATFORM_D):
 | |
| 	$(Q) $(MAKEDIRS) $(PLATFORM_DIR)
 | |
| 	@exit > $@
 | |
| 
 | |
| ###
 | |
| 
 | |
| RUBY_H_INCLUDES    = {$(VPATH)}ruby.h {$(VPATH)}config.h {$(VPATH)}defines.h \
 | |
| 		     {$(VPATH)}intern.h {$(VPATH)}missing.h {$(VPATH)}st.h \
 | |
| 		     {$(VPATH)}subst.h
 | |
| ENCODING_H_INCLUDES= {$(VPATH)}encoding.h {$(VPATH)}oniguruma.h
 | |
| PROBES_H_INCLUDES  = {$(VPATH)}probes.h
 | |
| VM_CORE_H_INCLUDES = {$(VPATH)}vm_core.h {$(VPATH)}thread_$(THREAD_MODEL).h \
 | |
| 		     {$(VPATH)}node.h {$(VPATH)}method.h {$(VPATH)}ruby_atomic.h \
 | |
| 	             {$(VPATH)}vm_debug.h {$(VPATH)}id.h
 | |
| 
 | |
| addr2line.$(OBJEXT): {$(VPATH)}addr2line.c {$(VPATH)}addr2line.h {$(VPATH)}config.h
 | |
| array.$(OBJEXT): {$(VPATH)}array.c $(RUBY_H_INCLUDES) {$(VPATH)}util.h \
 | |
|   $(ENCODING_H_INCLUDES) {$(VPATH)}internal.h $(PROBES_H_INCLUDES) {$(VPATH)}id.h
 | |
| bignum.$(OBJEXT): {$(VPATH)}bignum.c $(RUBY_H_INCLUDES) {$(VPATH)}util.h \
 | |
|   {$(VPATH)}thread.h {$(VPATH)}internal.h
 | |
| class.$(OBJEXT): {$(VPATH)}class.c $(RUBY_H_INCLUDES) \
 | |
|   $(VM_CORE_H_INCLUDES) {$(VPATH)}internal.h {$(VPATH)}constant.h
 | |
| compar.$(OBJEXT): {$(VPATH)}compar.c $(RUBY_H_INCLUDES)
 | |
| complex.$(OBJEXT): {$(VPATH)}complex.c $(RUBY_H_INCLUDES) \
 | |
|   {$(VPATH)}internal.h
 | |
| dir.$(OBJEXT): {$(VPATH)}dir.c $(RUBY_H_INCLUDES) {$(VPATH)}util.h \
 | |
|   $(ENCODING_H_INCLUDES) \
 | |
|   {$(VPATH)}internal.h
 | |
| 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 $(RUBY_H_INCLUDES)
 | |
| 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 {$(VPATH)}internal.h
 | |
| encoding.$(OBJEXT): {$(VPATH)}encoding.c $(RUBY_H_INCLUDES) \
 | |
|   $(ENCODING_H_INCLUDES) {$(VPATH)}regenc.h {$(VPATH)}util.h \
 | |
|   {$(VPATH)}internal.h
 | |
| enum.$(OBJEXT): {$(VPATH)}enum.c $(RUBY_H_INCLUDES) {$(VPATH)}node.h \
 | |
|   {$(VPATH)}util.h {$(VPATH)}id.h
 | |
| enumerator.$(OBJEXT): {$(VPATH)}enumerator.c $(RUBY_H_INCLUDES) \
 | |
|   {$(VPATH)}internal.h
 | |
| error.$(OBJEXT): {$(VPATH)}error.c {$(VPATH)}known_errors.inc \
 | |
|   $(RUBY_H_INCLUDES) $(VM_CORE_H_INCLUDES) $(ENCODING_H_INCLUDES) \
 | |
|   {$(VPATH)}internal.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)}gc.h {$(VPATH)}iseq.h \
 | |
|   $(ENCODING_H_INCLUDES) {$(VPATH)}internal.h $(PROBES_H_INCLUDES)
 | |
| load.$(OBJEXT): {$(VPATH)}load.c {$(VPATH)}eval_intern.h \
 | |
|   {$(VPATH)}util.h $(RUBY_H_INCLUDES) $(VM_CORE_H_INCLUDES) \
 | |
|   {$(VPATH)}dln.h {$(VPATH)}internal.h $(PROBES_H_INCLUDES)
 | |
| file.$(OBJEXT): {$(VPATH)}file.c $(RUBY_H_INCLUDES) {$(VPATH)}io.h \
 | |
|   $(ENCODING_H_INCLUDES) {$(VPATH)}util.h {$(VPATH)}dln.h \
 | |
|   {$(VPATH)}internal.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)}internal.h {$(VPATH)}constant.h \
 | |
|   {$(VPATH)}thread.h $(PROBES_H_INCLUDES)
 | |
| hash.$(OBJEXT): {$(VPATH)}hash.c $(RUBY_H_INCLUDES) {$(VPATH)}util.h \
 | |
|   $(ENCODING_H_INCLUDES) {$(VPATH)}internal.h $(PROBES_H_INCLUDES)
 | |
| inits.$(OBJEXT): {$(VPATH)}inits.c $(RUBY_H_INCLUDES) \
 | |
|   {$(VPATH)}internal.h
 | |
| io.$(OBJEXT): {$(VPATH)}io.c $(RUBY_H_INCLUDES) {$(VPATH)}io.h \
 | |
|   {$(VPATH)}util.h $(ENCODING_H_INCLUDES) {$(VPATH)}dln.h \
 | |
|   {$(VPATH)}internal.h {$(VPATH)}thread.h {$(VPATH)}id.h
 | |
| main.$(OBJEXT): {$(VPATH)}main.c $(RUBY_H_INCLUDES) {$(VPATH)}node.h {$(VPATH)}vm_debug.h
 | |
| marshal.$(OBJEXT): {$(VPATH)}marshal.c $(RUBY_H_INCLUDES) {$(VPATH)}io.h \
 | |
|   $(ENCODING_H_INCLUDES) {$(VPATH)}util.h {$(VPATH)}internal.h
 | |
| math.$(OBJEXT): {$(VPATH)}math.c $(RUBY_H_INCLUDES) \
 | |
|   {$(VPATH)}internal.h
 | |
| 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) {$(VPATH)}internal.h {$(VPATH)}id.h
 | |
| object.$(OBJEXT): {$(VPATH)}object.c $(RUBY_H_INCLUDES) {$(VPATH)}util.h \
 | |
|   {$(VPATH)}internal.h {$(VPATH)}constant.h $(ENCODING_H_INCLUDES) $(PROBES_H_INCLUDES)
 | |
| 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) {$(VPATH)}id.h {$(VPATH)}regenc.h \
 | |
|   {$(VPATH)}regex.h {$(VPATH)}util.h {$(VPATH)}lex.c \
 | |
|   {$(VPATH)}defs/keywords {$(VPATH)}id.c {$(VPATH)}parse.y \
 | |
|   {$(VPATH)}parse.h {$(VPATH)}internal.h $(PROBES_H_INCLUDES)
 | |
| proc.$(OBJEXT): {$(VPATH)}proc.c {$(VPATH)}eval_intern.h \
 | |
|   $(RUBY_H_INCLUDES) {$(VPATH)}gc.h $(VM_CORE_H_INCLUDES) \
 | |
|   {$(VPATH)}internal.h {$(VPATH)}iseq.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)}internal.h \
 | |
|   {$(VPATH)}thread.h
 | |
| random.$(OBJEXT): {$(VPATH)}random.c $(RUBY_H_INCLUDES) \
 | |
|   {$(VPATH)}siphash.c {$(VPATH)}siphash.h
 | |
| range.$(OBJEXT): {$(VPATH)}range.c $(RUBY_H_INCLUDES) \
 | |
|   $(ENCODING_H_INCLUDES) {$(VPATH)}internal.h {$(VPATH)}id.h
 | |
| rational.$(OBJEXT): {$(VPATH)}rational.c $(RUBY_H_INCLUDES) {$(VPATH)}internal.h
 | |
| 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 {$(VPATH)}internal.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)}internal.h
 | |
| safe.$(OBJEXT): {$(VPATH)}safe.c $(RUBY_H_INCLUDES) $(VM_CORE_H_INCLUDES)
 | |
| signal.$(OBJEXT): {$(VPATH)}signal.c $(RUBY_H_INCLUDES) \
 | |
|   $(VM_CORE_H_INCLUDES)
 | |
| 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 $(RUBY_H_INCLUDES)
 | |
| strftime.$(OBJEXT): {$(VPATH)}strftime.c $(RUBY_H_INCLUDES) \
 | |
|   {$(VPATH)}timev.h $(ENCODING_H_INCLUDES)
 | |
| string.$(OBJEXT): {$(VPATH)}string.c $(RUBY_H_INCLUDES) {$(VPATH)}re.h \
 | |
|   {$(VPATH)}regex.h $(ENCODING_H_INCLUDES) {$(VPATH)}internal.h $(PROBES_H_INCLUDES)
 | |
| struct.$(OBJEXT): {$(VPATH)}struct.c $(RUBY_H_INCLUDES) {$(VPATH)}internal.h
 | |
| thread.$(OBJEXT): {$(VPATH)}thread.c {$(VPATH)}eval_intern.h \
 | |
|   $(RUBY_H_INCLUDES) {$(VPATH)}gc.h $(VM_CORE_H_INCLUDES) \
 | |
|   {$(VPATH)}thread_$(THREAD_MODEL).c $(ENCODING_H_INCLUDES) \
 | |
|   {$(VPATH)}internal.h {$(VPATH)}io.h {$(VPATH)}thread.h
 | |
| transcode.$(OBJEXT): {$(VPATH)}transcode.c $(RUBY_H_INCLUDES) \
 | |
|   $(ENCODING_H_INCLUDES) {$(VPATH)}transcode_data.h {$(VPATH)}internal.h
 | |
| cont.$(OBJEXT): {$(VPATH)}cont.c $(RUBY_H_INCLUDES) \
 | |
|   $(VM_CORE_H_INCLUDES) {$(VPATH)}gc.h {$(VPATH)}eval_intern.h \
 | |
|   {$(VPATH)}internal.h
 | |
| time.$(OBJEXT): {$(VPATH)}time.c $(RUBY_H_INCLUDES) \
 | |
|   $(ENCODING_H_INCLUDES) {$(VPATH)}timev.h {$(VPATH)}internal.h
 | |
| util.$(OBJEXT): {$(VPATH)}util.c $(RUBY_H_INCLUDES) {$(VPATH)}util.h \
 | |
|   {$(VPATH)}internal.h
 | |
| variable.$(OBJEXT): {$(VPATH)}variable.c $(RUBY_H_INCLUDES) \
 | |
|   {$(VPATH)}node.h {$(VPATH)}util.h {$(VPATH)}encoding.h \
 | |
|   {$(VPATH)}oniguruma.h {$(VPATH)}internal.h {$(VPATH)}constant.h
 | |
| version.$(OBJEXT): {$(VPATH)}version.c $(RUBY_H_INCLUDES) \
 | |
|   {$(VPATH)}version.h $(srcdir)/version.h $(srcdir)/revision.h {$(VPATH)}config.h \
 | |
|   verconf.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)}optunifs.inc {$(VPATH)}opt_sc.inc {$(VPATH)}insns.inc \
 | |
|   {$(VPATH)}internal.h
 | |
| 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)}internal.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)}internal.h {$(VPATH)}vm.h {$(VPATH)}constant.h \
 | |
|   $(PROBES_H_INCLUDES) {$(VPATH)}probes_helper.h
 | |
| vm_dump.$(OBJEXT): {$(VPATH)}vm_dump.c $(RUBY_H_INCLUDES) \
 | |
|   $(VM_CORE_H_INCLUDES) {$(VPATH)}addr2line.h \
 | |
|   {$(VPATH)}internal.h
 | |
| debug.$(OBJEXT): {$(VPATH)}debug.c $(RUBY_H_INCLUDES) \
 | |
|   $(ENCODING_H_INCLUDES) $(VM_CORE_H_INCLUDES) {$(VPATH)}eval_intern.h \
 | |
|   {$(VPATH)}util.h
 | |
| id.$(OBJEXT): {$(VPATH)}id.c $(RUBY_H_INCLUDES) {$(VPATH)}id.h {$(VPATH)}vm_opts.h
 | |
| vm_backtrace.$(OBJEXT): {$(VPATH)}vm_backtrace.c \
 | |
|   $(VM_CORE_H_INCLUDES) $(RUBY_H_INCLUDES) $(ENCODING_H_INCLUDES) \
 | |
|   {$(VPATH)}internal.h {$(VPATH)}iseq.h {$(VPATH)}debug.h
 | |
| vm_trace.$(OBJEXT): {$(VPATH)}vm_trace.c $(ENCODING_H_INCLUDES) \
 | |
|   $(VM_CORE_H_INCLUDES) $(RUBY_H_INCLUDES) {$(VPATH)}debug.h \
 | |
|   {$(VPATH)}internal.h
 | |
| miniprelude.$(OBJEXT): {$(VPATH)}miniprelude.c $(RUBY_H_INCLUDES) \
 | |
|   $(VM_CORE_H_INCLUDES) {$(VPATH)}internal.h
 | |
| prelude.$(OBJEXT): {$(VPATH)}prelude.c $(RUBY_H_INCLUDES) \
 | |
|   $(VM_CORE_H_INCLUDES) {$(VPATH)}internal.h
 | |
| golf_prelude.$(OBJEXT): {$(VPATH)}golf_prelude.c $(RUBY_H_INCLUDES) \
 | |
|   $(VM_CORE_H_INCLUDES) {$(VPATH)}internal.h
 | |
| goruby.$(OBJEXT): {$(VPATH)}goruby.c {$(VPATH)}main.c $(RUBY_H_INCLUDES) \
 | |
|   {$(VPATH)}vm_debug.h {$(VPATH)}node.h
 | |
| 
 | |
| ascii.$(OBJEXT): {$(VPATH)}ascii.c {$(VPATH)}regenc.h {$(VPATH)}config.h \
 | |
|   {$(VPATH)}oniguruma.h {$(VPATH)}missing.h $(RUBY_H_INCLUDES)
 | |
| us_ascii.$(OBJEXT): {$(VPATH)}us_ascii.c {$(VPATH)}regenc.h \
 | |
|   {$(VPATH)}config.h {$(VPATH)}oniguruma.h {$(VPATH)}missing.h $(RUBY_H_INCLUDES)
 | |
| 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 {$(VPATH)}enc/unicode/casefold.h  \
 | |
|   {$(VPATH)}subst.h $(RUBY_H_INCLUDES)
 | |
| 
 | |
| utf_8.$(OBJEXT): {$(VPATH)}utf_8.c {$(VPATH)}regenc.h {$(VPATH)}config.h \
 | |
|   {$(VPATH)}oniguruma.h {$(VPATH)}missing.h $(RUBY_H_INCLUDES)
 | |
| 
 | |
| win32/win32.$(OBJEXT): {$(VPATH)}win32/win32.c $(RUBY_H_INCLUDES) $(PLATFORM_D)
 | |
| win32/file.$(OBJEXT): {$(VPATH)}win32/file.c $(RUBY_H_INCLUDES) $(PLATFORM_D)
 | |
| 
 | |
| $(NEWLINE_C): $(srcdir)/enc/trans/newline.trans $(srcdir)/tool/transcode-tblgen.rb
 | |
| 	$(Q) $(BASERUBY) "$(srcdir)/tool/transcode-tblgen.rb" -vo $@ $(srcdir)/enc/trans/newline.trans
 | |
| newline.$(OBJEXT): $(NEWLINE_C) {$(VPATH)}defines.h \
 | |
|   {$(VPATH)}intern.h {$(VPATH)}missing.h {$(VPATH)}st.h \
 | |
|   {$(VPATH)}transcode_data.h {$(VPATH)}ruby.h {$(VPATH)}config.h {$(VPATH)}subst.h
 | |
| 
 | |
| DTRACE_DEPENDENT_OBJS = array.$(OBJEXT) \
 | |
| 		eval.$(OBJEXT) \
 | |
| 		gc.$(OBJEXT) \
 | |
| 		hash.$(OBJEXT) \
 | |
| 		load.$(OBJEXT) \
 | |
| 		object.$(OBJEXT) \
 | |
| 		parse.$(OBJEXT) \
 | |
| 		string.$(OBJEXT) \
 | |
| 		vm.$(OBJEXT)
 | |
| 
 | |
| probes.$(OBJEXT): $(DTRACE_DEPENDENT_OBJS)
 | |
| ruby-glommed.$(OBJEXT): $(OBJS) $(DTRACE_OBJ)
 | |
| 
 | |
| $(OBJS):  {$(VPATH)}config.h {$(VPATH)}missing.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 {$(VPATH)}id.c srcs-ext srcs-enc
 | |
| 
 | |
| EXT_SRCS = $(srcdir)/ext/ripper/ripper.c $(srcdir)/ext/json/parser/parser.c
 | |
| 
 | |
| srcs-ext: $(EXT_SRCS)
 | |
| 
 | |
| srcs-enc: $(ENC_MK)
 | |
| 	$(ECHO) making srcs under enc
 | |
| 	$(Q) $(MAKE) -f $(ENC_MK) RUBY="$(MINIRUBY)" MINIRUBY="$(MINIRUBY)" $(MFLAGS) srcs
 | |
| 
 | |
| all-incs: incs
 | |
| 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 {$(VPATH)}id.h {$(VPATH)}probes.dmyh
 | |
| 
 | |
| insns: $(INSNS)
 | |
| 
 | |
| id.h: $(srcdir)/tool/generic_erb.rb $(srcdir)/template/id.h.tmpl $(srcdir)/defs/id.def
 | |
| 	$(ECHO) generating $@
 | |
| 	$(Q) $(BASERUBY) $(srcdir)/tool/generic_erb.rb --output=$@ \
 | |
| 		$(srcdir)/template/$@.tmpl
 | |
| 
 | |
| id.c: $(srcdir)/tool/generic_erb.rb $(srcdir)/template/id.c.tmpl $(srcdir)/defs/id.def
 | |
| 	$(ECHO) generating $@
 | |
| 	$(Q) $(BASERUBY) $(srcdir)/tool/generic_erb.rb --output=$@ \
 | |
| 		$(srcdir)/template/$@.tmpl
 | |
| 
 | |
| node_name.inc: {$(VPATH)}node.h
 | |
| 	$(ECHO) generating $@
 | |
| 	$(Q) $(BASERUBY) -n $(srcdir)/tool/node_name.rb < $? > $@
 | |
| 
 | |
| encdb.h: $(PREP) $(srcdir)/tool/generic_erb.rb $(srcdir)/template/encdb.h.tmpl
 | |
| 	$(ECHO) generating $@
 | |
| 	$(Q) $(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
 | |
| 	$(ECHO) generating $@
 | |
| 	$(Q) $(MINIRUBY) $(srcdir)/tool/generic_erb.rb -c -o $@ $(srcdir)/template/transdb.h.tmpl $(srcdir)/enc/trans enc/trans
 | |
| 
 | |
| enc/encinit.c: $(ENC_MK) $(srcdir)/enc/encinit.c.erb
 | |
| 
 | |
| known_errors.inc: $(srcdir)/template/known_errors.inc.tmpl $(srcdir)/defs/known_errors.def
 | |
| 	$(ECHO) generating $@
 | |
| 	$(Q) $(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
 | |
| 	$(ECHO) generating $@
 | |
| 	$(Q) $(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/core_ext/kernel_gem.rb \
 | |
| 	   $(PRELUDE_SCRIPTS) $(PREP)
 | |
| 	$(ECHO) generating $@
 | |
| 	$(Q) $(COMPILE_PRELUDE) $(PRELUDE_SCRIPTS) $@
 | |
| 
 | |
| golf_prelude.c: $(srcdir)/tool/compile_prelude.rb $(RBCONFIG) $(srcdir)/prelude.rb $(srcdir)/golf_prelude.rb $(PREP)
 | |
| 	$(ECHO) generating $@
 | |
| 	$(Q) $(COMPILE_PRELUDE) $(srcdir)/golf_prelude.rb $@
 | |
| 
 | |
| probes.dmyh: {$(srcdir)}probes.d $(srcdir)/tool/gen_dummy_probes.rb
 | |
| 	$(BASERUBY) $(srcdir)/tool/gen_dummy_probes.rb $(srcdir)/probes.d > $@
 | |
| 
 | |
| probes.h: {$(VPATH)}probes.$(DTRACE_EXT)
 | |
| 
 | |
| prereq: incs srcs preludes PHONY
 | |
| 
 | |
| 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)
 | |
| 	-$(Q) $(BASERUBY) $(srcdir)/tool/file2lastrev.rb --revision.h "$(srcdir)" > revision.tmp
 | |
| 	$(Q)$(IFCHANGE) "--timestamp=$@" "$(srcdir)/revision.h" revision.tmp
 | |
| 
 | |
| $(srcdir)/ext/ripper/ripper.c: parse.y
 | |
| 	$(ECHO) generating $@
 | |
| 	$(Q) $(CHDIR) $(@D) && $(exec) $(MAKE) -f depend $(MFLAGS) \
 | |
| 		Q=$(Q) ECHO=$(ECHO) top_srcdir=../.. srcdir=. VPATH=../.. RUBY="$(BASERUBY)"
 | |
| 
 | |
| $(srcdir)/ext/json/parser/parser.c: $(srcdir)/ext/json/parser/parser.rl
 | |
| 	$(ECHO) generating $@
 | |
| 	$(Q) $(CHDIR) $(@D) && $(exec) $(MAKE) -f prereq.mk $(MFLAGS) \
 | |
| 		Q=$(Q) ECHO=$(ECHO) top_srcdir=../../.. srcdir=.
 | |
| 
 | |
| ##
 | |
| 
 | |
| 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); built-ruby::$(RUNRUBY)" \
 | |
| 	            --pattern='bm_' --directory=$(srcdir)/benchmark $(OPTS)
 | |
| 
 | |
| benchmark-each: $(PROGRAM) PHONY
 | |
| 	$(BASERUBY) $(srcdir)/benchmark/driver.rb -v \
 | |
| 	            --executables="$(COMPARE_RUBY); built-ruby::$(RUNRUBY)" \
 | |
| 	            --pattern=$(ITEM) --directory=$(srcdir)/benchmark $(OPTS)
 | |
| 
 | |
| tbench: $(PROGRAM) PHONY
 | |
| 	$(BASERUBY) $(srcdir)/benchmark/driver.rb -v \
 | |
| 	            --executables="$(COMPARE_RUBY); built-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 'set $$_exitcode = -999'         >> run.gdb
 | |
| 	echo run                              >> run.gdb
 | |
| 	echo 'if $$_exitcode != -999'         >> run.gdb
 | |
| 	echo '  quit'                         >> run.gdb
 | |
| 	echo end                              >> run.gdb
 | |
| 
 | |
| 
 | |
| gdb: miniruby$(EXEEXT) run.gdb PHONY
 | |
| 	gdb -x run.gdb --quiet --args $(MINIRUBY) $(TESTRUN_SCRIPT)
 | |
| 
 | |
| gdb-ruby: $(PROGRAM) run.gdb PHONY
 | |
| 	$(Q) $(RUNRUBY_COMMAND) $(RUNRUBY_DEBUGGER) -- $(TESTRUN_SCRIPT)
 | |
| 
 | |
| dist:
 | |
| 	$(BASERUBY) $(srcdir)/tool/make-snapshot tmp $(RELNAME)
 | |
| 
 | |
| up::
 | |
| 	-$(Q)$(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)
 | |
| 
 | |
| change: PHONY
 | |
| 	$(BASERUBY) -C "$(srcdir)" ./tool/change_maker.rb $(CHANGES) > change.log
 | |
| 
 | |
| love: sudo-precheck up all test install test-all
 | |
| 	@echo love is all you need
 | |
| 
 | |
| sudo-precheck:
 | |
| 	@$(SUDO) echo > $(NULL)
 | |
| 
 | |
| help: PHONY
 | |
| 	$(MESSAGE_BEGIN) \
 | |
| 	"                Makefile of Ruby" \
 | |
| 	"" \
 | |
| 	"targets:" \
 | |
| 	"  all (default):   builds all of below" \
 | |
| 	"  miniruby:        builds only miniruby" \
 | |
| 	"  encs:            builds encodings" \
 | |
| 	"  exts:            builds extensions" \
 | |
| 	"  main:            builds encodings, extensions and ruby" \
 | |
| 	"  docs:            builds documents" \
 | |
| 	"  run:             runs test.rb by miniruby" \
 | |
| 	"  runruby:         runs test.rb by ruby you just built" \
 | |
| 	"  gdb:             runs test.rb by miniruby under gdb" \
 | |
| 	"  gdb-ruby:        runs test.rb by ruby under gdb" \
 | |
| 	"  check:           equals make test test-all" \
 | |
| 	"  test:            ruby core tests" \
 | |
| 	"  test-all:        all ruby tests" \
 | |
| 	"  test-rubyspec:   run RubySpec test suite" \
 | |
| 	"  update-rubyspec: update local copy of RubySpec" \
 | |
| 	"  benchmark:       benchmark this ruby and COMPARE_RUBY" \
 | |
| 	"  install:         install all ruby distributions" \
 | |
| 	"  install-nodoc:   install without rdoc" \
 | |
| 	"  install-cross:   install cross compiling staff" \
 | |
| 	"  clean:           clean for tarball" \
 | |
| 	"  distclean:       clean for repository" \
 | |
| 	"  change:          make change log template" \
 | |
| 	"  golf:            for golfers" \
 | |
| 	"" \
 | |
| 	"see DeveloperHowto for more detail: " \
 | |
| 	"  http://bugs.ruby-lang.org/wiki/ruby/DeveloperHowto" \
 | |
| 	$(MESSAGE_END)
 |