From 4f5259cc5b6273f509602434747f702d16b71b27 Mon Sep 17 00:00:00 2001 From: Mike Burns Date: Sat, 27 Jul 2013 00:34:01 -0400 Subject: Re-write using GNU autoconf and automake Replace the `Makefile` with a `configure.ac` and a set of `Makefile.am`. --- configure.ac | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 configure.ac (limited to 'configure.ac') 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) -- cgit v1.2.3