summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorauric <auric@japegames.com>2026-02-21 15:11:51 -0600
committerauric <auric@japegames.com>2026-02-21 15:11:51 -0600
commit52f92ea70f74008d82d21fef5085fb7380314ea1 (patch)
tree357ec1f0ec75779fc945d3b7460e976fe677ae31 /Makefile
parentaf012ffe7594350021741c62bd1205b65dfec07f (diff)
parentfc10d8a0818bb87001a64a72552ed28fe60931ee (diff)
Merge pull request #2 from ihateamongus/claude/trusting-dirac
State probing overhaul, A2S queries, tail/broadcast, bot audit log
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 3 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 7cfa4a1..e10a476 100644
--- a/Makefile
+++ b/Makefile
@@ -3,7 +3,7 @@
CC = gcc
CFLAGS = -Wall -Wextra -Wpedantic -std=c11 -D_GNU_SOURCE \
-O2 -g
-LDFLAGS = -lyaml
+LDFLAGS = -lyaml -lsystemd
DAEMON_SRCS = \
src/main.c \
@@ -13,7 +13,8 @@ DAEMON_SRCS = \
src/client.c \
src/log.c \
src/log_tail.c \
- src/console/rcon.c
+ src/console/rcon.c \
+ src/console/a2s.c
CLI_SRCS = clients/umbrella-cli/main.c