mirror of
https://github.com/factoriotools/factorio-docker.git
synced 2025-10-19 12:19:59 +02:00
Add rcon client to container
This commit is contained in:
13
docker/rcon/Makefile
Normal file
13
docker/rcon/Makefile
Normal 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)
|
Reference in New Issue
Block a user