mirror of
https://github.com/factoriotools/factorio-docker.git
synced 2025-01-16 05:03:06 +01:00
c2d7c5696e
* Add rcon client to container * Explain rcon command * Remove test container name * Apply suggestions Co-authored-by: Florian Kinder <florian.kinder@fankserver.com> * Add example docker-compose file * Clarify return code * Switch to pre-update * Update docker-compose.yml Co-authored-by: Florian Kinder <florian.kinder@fankserver.com> * Allow build support for build (/* is only possible in buildx) * Added version information in README.md --------- Co-authored-by: Florian Kinder <florian.kinder@fankserver.com>
14 lines
191 B
Makefile
14 lines
191 B
Makefile
# 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)
|