From 9ca50bebfa45165af50fa166888b593db67d8e21 Mon Sep 17 00:00:00 2001 From: Vito Caputo Date: Wed, 2 May 2018 18:53:42 -0700 Subject: build: add rudimentary automake build system --- configure.ac | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 configure.ac (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac new file mode 100644 index 0000000..425aa59 --- /dev/null +++ b/configure.ac @@ -0,0 +1,13 @@ +AC_INIT([libpulp], [1.0], [vcaputo@pengaru.com]) +AM_INIT_AUTOMAKE([-Wall -Werror foreign]) +AC_PROG_CC +AM_PROG_CC_C_O +AM_PROG_AR +AC_PROG_RANLIB +AM_SILENT_RULES([yes]) + +AC_CONFIG_FILES([ + Makefile + src/Makefile +]) +AC_OUTPUT -- cgit v1.2.3