From fcbf63e62c627deae76c1b8cb8c0876c536ed811 Mon Sep 17 00:00:00 2001 From: Jari Vetoniemi Date: Mon, 16 Mar 2020 18:49:26 +0900 Subject: Fresh start --- jni/iconv/libcharset/Makefile.devel | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 jni/iconv/libcharset/Makefile.devel (limited to 'jni/iconv/libcharset/Makefile.devel') diff --git a/jni/iconv/libcharset/Makefile.devel b/jni/iconv/libcharset/Makefile.devel new file mode 100644 index 0000000..ca35f64 --- /dev/null +++ b/jni/iconv/libcharset/Makefile.devel @@ -0,0 +1,31 @@ +# This is the developer's makefile, not the user's makefile. +# Don't use it unless you know exactly what you do! + +SHELL = /bin/sh +MAKE = make +AUTOCONF = autoconf-2.63 +AUTOHEADER = autoheader-2.63 +ACLOCAL = aclocal-1.11 +CP = cp +RM = rm -f + +all : configures include/localcharset.h.build.in + +autoconf/aclocal.m4 : $(wildcard m4/*.m4) + $(ACLOCAL) -I m4 --output=$@ + +configures : configure config.h.in + +configure : configure.ac autoconf/aclocal.m4 + $(AUTOCONF) --include autoconf + +config.h.in : configure.ac autoconf/aclocal.m4 + $(AUTOHEADER) --include autoconf + touch config.h.in + +include/localcharset.h.build.in : include/localcharset.h.in include/export.h + sed -e 's/extern \([^"]\)/extern LIBCHARSET_DLL_EXPORTED \1/' \ + -e '/#define _LOCALCHARSET_H/r include/export.h' \ + < $< > $@ + +force : -- cgit v1.2.3