--- /dev/null
+VERSION = @PACKAGE_VERSION@
+
+TAR = tar
+WGET = wget
+SUDO =
+
+prefix = @prefix@
+exec_prefix = @exec_prefix@
+BINDIR = @bindir@
+LIBDIR = @libdir@
+OPTS = @ac_configure_args@
+
+
+all: build-intlfonts build-gt
+
+install: install-intlfonts install-gt
+
+
+build-intlfonts: intlfonts-1.2.1/config.log
+ cd intlfonts-1.2.1 && make
+
+intlfonts-1.2.1/config.log: intlfonts-1.2.1.tar.gz
+ $(TAR) xvzf intlfonts-1.2.1.tar.gz
+ cd intlfonts-1.2.1 && ./configure $(OPTS)
+
+intlfonts-1.2.1.tar.gz:
+ $(WGET) http://ftp.gnu.org/gnu/intlfonts/intlfonts-1.2.1.tar.gz
+
+install-intlfonts:
+ cd intlfonts-1.2.1 && make install
+
+
+build-gt:
+ cd GT && make all
+
+install-gt:
+ cd GT && make install
--- /dev/null
+# -*- Autoconf -*-
+# Process this file with autoconf to produce a configure script.
+
+AC_PREREQ(2.57)
+AC_INIT(chise-fonts, 0.1, chise-en@m17n.org)
+
+AC_CANONICAL_TARGET
+
+# Checks for programs.
+# AC_PROG_CC
+# AC_PROG_LIBTOOL
+# AC_CHECK_PROGS(LIBTOOL, glibtool libtool, libtool, \
+# /usr/local/bin:/opt/bin:/sw/bin:/usr/bin:/bin)
+
+AC_SUBST(ac_configure_args)
+
+# Checks for header files.
+
+# Checks for typedefs, structures, and compiler characteristics.
+#AC_C_CONST
+#AC_C_INLINE
+
+# Checks for library functions.
+#AC_FUNC_ALLOCA
+#AC_FUNC_STRNLEN
+
+#AC_CHECK_FUNCS(strnlen)
+
+AC_CONFIG_FILES([Makefile])
+AC_CONFIG_FILES([GT/Makefile])
+AC_OUTPUT