summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorBent Bisballe Nyeng <deva@aasimon.org>2020-06-07 10:05:32 +0200
committerBent Bisballe Nyeng <deva@aasimon.org>2020-06-07 10:05:32 +0200
commitdd19910ec18ec60633bf5b4fcda5bab220d0565f (patch)
treec42c60a7daa15d99d772d670d53c29caf45d821b /configure.ac
parent5f95718e7ebe4dec017055500793b928d8946d8e (diff)
Relocate all webservice files to src/ws and make sure they can be found by the service after install.
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac5
1 files changed, 4 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 3137788..0d4f9e1 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,9 +1,11 @@
# Filename: configure.in
-AC_INIT([muniad], [0.0.2])
+AC_INIT([munia], [0.1.0])
AC_CONFIG_SRCDIR([src/muniad.cc])
AM_INIT_AUTOMAKE
+AM_SILENT_RULES([yes])
+
dnl ======================
dnl Compile with debug options
dnl ======================
@@ -73,6 +75,7 @@ PKG_CHECK_MODULES(LIBWEBSOCKETS, libwebsockets >= 2.1)
AC_OUTPUT(
Makefile
src/Makefile
+ src/ws/Makefile
test/Makefile
tools/Makefile)