From: Michael Orlitzky Date: Mon, 9 Oct 2023 03:50:26 +0000 (-0400) Subject: Makefile.am,configure.ac: initial autotools build system X-Git-Url: https://gitweb.michael.orlitzky.com/?a=commitdiff_plain;h=f291489b2d228330008e39f7e2d04bc7a0fc4a4b;p=charm-bypass.git Makefile.am,configure.ac: initial autotools build system --- diff --git a/Makefile.am b/Makefile.am new file mode 100644 index 0000000..dfeca2a --- /dev/null +++ b/Makefile.am @@ -0,0 +1 @@ +EXTRA_DIST = doc src diff --git a/configure.ac b/configure.ac new file mode 100644 index 0000000..5b9256c --- /dev/null +++ b/configure.ac @@ -0,0 +1,20 @@ +AC_PREREQ([2.71]) +AC_INIT([charm-bypass],[0.0.1],[michael@orlitzky.com]) +AC_CONFIG_AUX_DIR([build-aux]) +AM_INIT_AUTOMAKE([-Wall foreign no-dist-gzip dist-xz tar-ustar]) +AC_CONFIG_FILES([Makefile]) +AC_CONFIG_SRCDIR([src/day.svg]) + +AC_PATH_PROG( + [BASE64], + [base64], + [AC_MSG_ERROR([base64 program not found])] +) + +AC_PATH_PROG( + [XMLLINT], + [xmllint], + [AC_MSG_ERROR([xmllint program not found])] +) + +AC_OUTPUT