summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorFabrice <fabrice@schaub-dev.xyz>2026-02-09 22:16:37 +0100
committerFabrice <fabrice@schaub-dev.xyz>2026-02-09 22:16:37 +0100
commit69ea1f4b27634ea23b80aeadddc3eeb2bd6f4f3c (patch)
treecae85aa91a5f63d35ff2785bb14d59c2778769e4 /configure.ac
init
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac15
1 files changed, 15 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac
new file mode 100644
index 0000000..b45f5bf
--- /dev/null
+++ b/configure.ac
@@ -0,0 +1,15 @@
+AC_INIT([wayclock], [0.1])
+
+AC_CONFIG_SRCDIR([configure.ac])
+AC_CONFIG_AUX_DIR([build-aux])
+
+AM_INIT_AUTOMAKE([foreign subdir-objects])
+AM_SILENT_RULES([yes])
+
+AC_PROG_CXX
+
+AC_CONFIG_FILES([
+ Makefile
+ src/Makefile
+])
+AC_OUTPUT \ No newline at end of file