From c7d7e01bf5da362c4a8065efedc6dc7836471f61 Mon Sep 17 00:00:00 2001 From: Vito Caputo Date: Sat, 7 Nov 2020 12:40:07 -0800 Subject: autotools: setup rudimentary build system This is arguably overkill for such a small .a, but it's convenient for embedding in other autotools projects. --- configure.ac | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 configure.ac (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac new file mode 100644 index 0000000..cfe6dca --- /dev/null +++ b/configure.ac @@ -0,0 +1,20 @@ +AC_INIT([libiou], [0.1], [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]) + +CFLAGS="$CFLAGS -Wall" + +dnl Check for liburing +PKG_CHECK_MODULES(URING, liburing) +CFLAGS="$CFLAGS $URING_CFLAGS" +LIBS="$LIBS $URING_LIBS" + +AC_CONFIG_FILES([ + Makefile + src/Makefile +]) +AC_OUTPUT -- cgit v1.2.3