Add rcon client to container

This commit is contained in:
Tobias Tangemann
2024-11-10 18:47:06 +01:00
parent 2092e86aec
commit 374f7c8249
4 changed files with 251 additions and 1 deletions

13
docker/rcon/Makefile Normal file
View File

@@ -0,0 +1,13 @@
# Optimization
OPT = -O3 -flto
TARGET = rcon
CC = gcc
CFLAGS = -std=c17 -Wall -Wextra -pedantic $(OPT)
REMOVE = rm -f
all:
$(CC) $(CFLAGS) main.c -o $(TARGET)
clean:
$(REMOVE) $(TARGET)