summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorMasaya Tojo <masaya@tojo.tokyo>2020-07-08 04:55:13 +0900
committerMasaya Tojo <masaya@tojo.tokyo>2020-07-08 05:07:34 +0900
commit5a4c8f98774e3d19562a508a2f71a60d8fbb2a2d (patch)
tree9da6ff969ae28363b1bac4b0535c71a7d7428b14 /configure.ac
parentc3d83ca447935cf91cb767ad00278395b0fd12ce (diff)
Create project from template.
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..0cf3868
--- /dev/null
+++ b/configure.ac
@@ -0,0 +1,13 @@
+AC_INIT([qkbox], [0.1.0])
+AC_CONFIG_SRCDIR([qkbox])
+AC_CONFIG_AUX_DIR([build-aux])
+AM_INIT_AUTOMAKE([-Wall -Werror foreign])
+AM_SILENT_RULES([yes])
+
+GUILE_PKG([3.0 2.2 2.0])
+GUILE_PROGS
+
+AC_CONFIG_FILES([Makefile])
+AC_CONFIG_FILES([pre-inst-env], [chmod +x pre-inst-env])
+
+AC_OUTPUT