From bd852e1e921986093e9fd323d50ca9626a810453 Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Sat, 15 May 2010 17:33:49 +0100 Subject: [PATCH 1/1] wip build system --- .gitignore | 10 ++++------ Makefile | 5 +++++ configure.ac | 2 ++ 3 files changed, 11 insertions(+), 6 deletions(-) create mode 100644 Makefile diff --git a/.gitignore b/.gitignore index 384a8e4..4e702dc 100644 --- a/.gitignore +++ b/.gitignore @@ -1,7 +1,5 @@ *~ -.stamp-configure-std -.stamp-configure-lfs -.stamp-build-std -.stamp-build-lfs -build-std -build-lfs +autom4te.cache +config.h +config.status +config.log diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..77354ba --- /dev/null +++ b/Makefile @@ -0,0 +1,5 @@ +all: + +autoconf: + autoheader2.50 + autoconf2.50 diff --git a/configure.ac b/configure.ac index 92b6f96..7fd049b 100644 --- a/configure.ac +++ b/configure.ac @@ -1,3 +1,5 @@ AC_INIT(innduct, 1.0) +AC_PREREQ(2.50) AC_CONFIG_SRCDIR(innduct.c) +AC_CONFIG_HEADERS([config.h]) AC_OUTPUT -- 2.30.2