summaryrefslogtreecommitdiff
path: root/trunk/enc/Makefile.in
diff options
context:
space:
mode:
Diffstat (limited to 'trunk/enc/Makefile.in')
-rw-r--r--trunk/enc/Makefile.in64
1 files changed, 64 insertions, 0 deletions
diff --git a/trunk/enc/Makefile.in b/trunk/enc/Makefile.in
new file mode 100644
index 0000000000..b7762191c4
--- /dev/null
+++ b/trunk/enc/Makefile.in
@@ -0,0 +1,64 @@
+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@
+
+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 =
+CC = @CC@
+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@
+LIBS = @LIBRUBYARG@ @LIBS@ $(EXTLIBS)
+LDSHARED = @LDSHARED@
+ldflags = $(LDFLAGS)
+dldflags = @DLDFLAGS@
+archflag = @ARCH_FLAG@
+DLDFLAGS = $(ldflags) $(dldflags) $(archflag)
+RUBY = $(MINIRUBY)
+
+WORKDIRS = $(ENCSODIR) $(TRANSSODIR) enc enc/trans
+
+RM = @RM@
+MAKEDIRS = @MAKEDIRS@
+
+.SUFFIXES: .trans
+
+all: make-workdir
+
+make-workdir:
+ $(MAKEDIRS) $(WORKDIRS)
+
+clean:
+
+distclean: clean
+ @$(RM) enc.mk