summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorGravatar Mike Burns <mike@mike-burns.com>2013-07-27 00:34:01 -0400
committerGravatar Mike Burns <mike@mike-burns.com>2013-07-27 01:06:30 -0400
commit4f5259cc5b6273f509602434747f702d16b71b27 (patch)
treeb56878a67451c527ec454c81093748236a1348b7 /configure.ac
parentca7b0cd7961e87bb618a4c8376f87253ffd894f2 (diff)
Re-write using GNU autoconf and automake
Replace the `Makefile` with a `configure.ac` and a set of `Makefile.am`.
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac18
1 files changed, 18 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac
new file mode 100644
index 0000000..e288c30
--- /dev/null
+++ b/configure.ac
@@ -0,0 +1,18 @@
+# -*- Autoconf -*-
+# Process this file with autoconf to produce a configure script.
+
+AC_PREREQ([2.69])
+AC_INIT(rcm, 0.0.2, mike@mike-burns.com)
+AM_INIT_AUTOMAKE(rcm, 0.0.2)
+
+# Checks for programs.
+
+# Checks for libraries.
+
+# Checks for header files.
+
+# Checks for typedefs, structures, and compiler characteristics.
+
+# Checks for library functions.
+
+AC_OUTPUT(Makefile bin/Makefile man/Makefile share/Makefile)