summaryrefslogtreecommitdiff
path: root/jni/iconv/preload/Makefile.devel
diff options
context:
space:
mode:
authorJari Vetoniemi <jari.vetoniemi@indooratlas.com>2020-03-16 18:49:26 +0900
committerJari Vetoniemi <jari.vetoniemi@indooratlas.com>2020-03-30 00:39:06 +0900
commitfcbf63e62c627deae76c1b8cb8c0876c536ed811 (patch)
tree64cb17de3f41a2b6fef2368028fbd00349946994 /jni/iconv/preload/Makefile.devel
Fresh start
Diffstat (limited to 'jni/iconv/preload/Makefile.devel')
-rw-r--r--jni/iconv/preload/Makefile.devel21
1 files changed, 21 insertions, 0 deletions
diff --git a/jni/iconv/preload/Makefile.devel b/jni/iconv/preload/Makefile.devel
new file mode 100644
index 0000000..f411571c
--- /dev/null
+++ b/jni/iconv/preload/Makefile.devel
@@ -0,0 +1,21 @@
+# 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
+ACLOCAL = aclocal-1.11
+CP = cp
+RM = rm -f
+
+all : configures
+
+aclocal.m4 : $(wildcard ../m4/*.m4)
+ $(ACLOCAL) -I ../m4 -I ../srcm4 --output=$@
+
+configures : configure
+
+configure : configure.ac aclocal.m4
+ $(AUTOCONF)
+
+force :