summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorDavid Thompson <dthompson2@worcester.edu>2023-05-26 07:37:38 -0400
committerDavid Thompson <dthompson2@worcester.edu>2023-05-26 07:37:38 -0400
commit255fbd76234e0411a9e95b7b80a28bf79c8dfff1 (patch)
tree7c9bb0b1fe38e8202f9586bfba4e6d9933180237 /configure.ac
First commit!
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac18
1 files changed, 18 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac
new file mode 100644
index 0000000..cb264af
--- /dev/null
+++ b/configure.ac
@@ -0,0 +1,18 @@
+dnl -*- Autoconf -*-
+
+AC_INIT(super-bloom, 0.1.0)
+AC_CONFIG_SRCDIR(super-bloom)
+AC_CONFIG_AUX_DIR([build-aux])
+AM_INIT_AUTOMAKE([foreign -Woverride -Wno-portability])
+AM_SILENT_RULES([yes])
+
+AC_CONFIG_FILES([Makefile])
+AC_CONFIG_FILES([pre-inst-env], [chmod +x pre-inst-env])
+
+GUILE_PKG([3.0])
+GUILE_PROGS
+
+GUILE_MODULE_REQUIRED([chickadee])
+GUILE_MODULE_REQUIRED([catbird])
+
+AC_OUTPUT