aboutsummaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorMasaya Tojo <masaya@tojo.tokyo>2021-03-24 04:40:06 +0900
committerMasaya Tojo <masaya@tojo.tokyo>2021-03-30 03:50:32 +0900
commitad207c351125f447db53a0a78eaa441e4b0039c8 (patch)
tree2b80bb101601f6a9467f2c7c2af9631027339bdb /configure.ac
Initial commit.
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac13
1 files changed, 13 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac
new file mode 100644
index 0000000..f40e778
--- /dev/null
+++ b/configure.ac
@@ -0,0 +1,13 @@
+AC_INIT([guile-acl2], [0.1.0])
+AC_CONFIG_SRCDIR([<srcfile>])
+AC_CONFIG_AUX_DIR([build-aux])
+AM_INIT_AUTOMAKE([-Wall -Werror foreign])
+AM_SILENT_RULES([yes])
+
+GUILE_PKG([3.0])
+GUILE_PROGS
+
+AC_CONFIG_FILES([Makefile])
+AC_CONFIG_FILES([pre-inst-env], [chmod +x pre-inst-env])
+
+AC_OUTPUT