branch: master
commit 455ee7cdea9400c1ca73f15a3a87bb68295dd9ab
Author: mas <mas>
Commit: mas <mas>
Initial revision
---
Makefile.am | 9 +++++++++
configure.in | 18 ++++++++++++++++++
2 files changed, 27 insertions(+)
diff --git a/Makefile.am b/Makefile.am
new file mode 100644
index 0000000..fa463cb
--- /dev/null
+++ b/Makefile.am
@@ -0,0 +1,9 @@
+## Process this file with automake to produce Makefile.in
+
+## The MMM Mode distribution is `flat', so we have no SUBDIRS macro.
+
+lisp_LISP = mmm-compat.el mmm-vars.el mmm-utils.el mmm-auto.el \
+ mmm-region.el mmm-class.el mmm-cmds.el mmm-mode.el \
+ mmm-sample.el mmm-mason.el
+
+info_TEXINFOS = mmm.texinfo
diff --git a/configure.in b/configure.in
new file mode 100644
index 0000000..49aa4c1
--- /dev/null
+++ b/configure.in
@@ -0,0 +1,18 @@
+dnl Process this file with autoconf to produce a configure script.
+AC_INIT()
+
+AM_INIT_AUTOMAKE(mmm, 0.3.8)
+
+AM_PATH_LISPDIR()
+
+dnl Checks for programs.
+
+dnl Checks for libraries.
+
+dnl Checks for header files.
+
+dnl Checks for typedefs, structures, and compiler characteristics.
+
+dnl Checks for library functions.
+
+AC_OUTPUT(Makefile)