summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
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