]> gitweb.michael.orlitzky.com - charm-bypass.git/commitdiff
Makefile.am,configure.ac: initial autotools build system
authorMichael Orlitzky <michael@orlitzky.com>
Mon, 9 Oct 2023 03:50:26 +0000 (23:50 -0400)
committerMichael Orlitzky <michael@orlitzky.com>
Mon, 9 Oct 2023 12:53:46 +0000 (08:53 -0400)
Makefile.am [new file with mode: 0644]
configure.ac [new file with mode: 0644]

diff --git a/Makefile.am b/Makefile.am
new file mode 100644 (file)
index 0000000..dfeca2a
--- /dev/null
@@ -0,0 +1 @@
+EXTRA_DIST = doc src
diff --git a/configure.ac b/configure.ac
new file mode 100644 (file)
index 0000000..5b9256c
--- /dev/null
@@ -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