mirror of
				https://github.com/ruby/ruby.git
				synced 2022-11-09 12:17:21 -05:00 
			
		
		
		
	 fbee46fe66
			
		
	
	
		fbee46fe66
		
	
	
	
	
		
			
			* enc/Makefile.in (TARGET_NAME, TARGET_ENTRY): needed for EXTDLDFLAGS on some platforms. [ruby-core:46600] [Bug #6768] * enc/depend: no longer needs tweaking DLDFLAGS for TARGET names. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@36502 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
		
			
				
	
	
		
			81 lines
		
	
	
	
		
			1.7 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			81 lines
		
	
	
	
		
			1.7 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| V = 0
 | |
| Q1 = $(V:1=)
 | |
| Q = $(Q1:0=@)
 | |
| n=$(NULLCMD)
 | |
| ECHO1 = $(V:1=@$n)
 | |
| ECHO = $(ECHO1:0=@echo)
 | |
| 
 | |
| encsrcdir = @srcdir@
 | |
| topdir = .
 | |
| prefix = @prefix@
 | |
| exec_prefix = @exec_prefix@
 | |
| libdir = @libdir@
 | |
| top_srcdir = $(encsrcdir:/enc=)
 | |
| srcdir = $(top_srcdir)
 | |
| arch = @arch@
 | |
| EXTOUT = @EXTOUT@
 | |
| hdrdir = $(srcdir)/include
 | |
| arch_hdrdir = $(EXTOUT)/include/$(arch)
 | |
| ENCSODIR = $(EXTOUT)/$(arch)/enc
 | |
| TRANSSODIR = $(ENCSODIR)/trans
 | |
| DLEXT = @DLEXT@
 | |
| OBJEXT = @OBJEXT@
 | |
| LIBEXT = @LIBEXT@
 | |
| 
 | |
| BUILTIN_ENCS	= ascii.c us_ascii.c\
 | |
| 		  unicode.c utf_8.c
 | |
| 
 | |
| BUILTIN_TRANSES	= newline.trans
 | |
| 
 | |
| RUBY_SO_NAME = @RUBY_SO_NAME@
 | |
| LIBRUBY = @LIBRUBY@
 | |
| LIBRUBYARG_SHARED = @LIBRUBYARG_SHARED@
 | |
| LIBRUBYARG_STATIC = $(LIBRUBYARG_SHARED)
 | |
| 
 | |
| empty =
 | |
| AR = @AR@
 | |
| CC = @CC@
 | |
| RANLIB = @RANLIB@
 | |
| OUTFLAG = @OUTFLAG@$(empty)
 | |
| COUTFLAG = @COUTFLAG@$(empty)
 | |
| CFLAGS = $(CCDLFLAGS) @CFLAGS@ @ARCH_FLAG@
 | |
| cflags = @cflags@
 | |
| optflags = @optflags@
 | |
| debugflags = @debugflags@
 | |
| warnflags = @warnflags@
 | |
| CCDLFLAGS = @CCDLFLAGS@
 | |
| INCFLAGS = -I. -I$(arch_hdrdir) -I$(hdrdir) -I$(top_srcdir)
 | |
| DEFS = @DEFS@
 | |
| CPPFLAGS = @CPPFLAGS@ -DONIG_ENC_REGISTER=rb_enc_register
 | |
| LDFLAGS = @LDFLAGS@
 | |
| LDSHARED = @LDSHARED@
 | |
| ldflags  = $(LDFLAGS)
 | |
| dldflags = @DLDFLAGS@
 | |
| extdldflags = @EXTDLDFLAGS@
 | |
| archflag = @ARCH_FLAG@
 | |
| DLDFLAGS = $(ldflags) $(dldflags) $(extdldflags) $(archflag)
 | |
| RUBY     = $(MINIRUBY)
 | |
| TARGET_NAME_ = $(@F) # BSD make seems unable to deal with @F with substitution
 | |
| TARGET_NAME = $(TARGET_NAME_:.@DLEXT@=)
 | |
| TARGET_ENTRY = @EXPORT_PREFIX@Init_$(TARGET_NAME)
 | |
| 
 | |
| WORKDIRS = @WORKDIRS@
 | |
| 
 | |
| NULLCMD = @NULLCMD@
 | |
| RM = @RM@
 | |
| RMDIR = @RMDIR@
 | |
| RMDIRS = @RMDIRS@
 | |
| MAKEDIRS = @MAKEDIRS@
 | |
| 
 | |
| .SUFFIXES: .trans
 | |
| 
 | |
| all: make-workdir
 | |
| 
 | |
| make-workdir:
 | |
| 	$(Q)$(MAKEDIRS) $(WORKDIRS)
 | |
| 
 | |
| clean:
 | |
| 
 | |
| distclean: clean
 | |
| 	$(Q)$(RM) enc.mk
 | |
| realclean: distclean clean-srcs
 |