diff options
author | Masaya Tojo <masaya@tojo.tokyo> | 2021-09-10 19:37:33 +0900 |
---|---|---|
committer | Masaya Tojo <masaya@tojo.tokyo> | 2021-09-10 19:37:44 +0900 |
commit | 659b834ab3edbb356bbf71df11f6f95ab0c3a0d8 (patch) | |
tree | 5cd576e5860081d689b15333c53672ac52fd4a9a /configure.ac |
First commit.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac new file mode 100644 index 0000000..96dcc48 --- /dev/null +++ b/configure.ac @@ -0,0 +1,13 @@ +AC_INIT([monitoring], [0.1.0]) +AC_CONFIG_SRCDIR([tojo-tokyo/monitoring.scm]) +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 |