huge commit

This commit is contained in:
2026-03-09 21:44:25 +01:00
parent ab2e537520
commit d1017bae51
441 changed files with 3438154 additions and 1363 deletions

View File

@@ -0,0 +1,22 @@
CC = gcc
CFLAGS = -Wall -Wextra -g
TARGET = ecu_sim
SECURITY_FLAGS = -no-pie -Wl,-z,relro -Wl,-z,lazy -fno-stack-protector -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=0
.PHONY: all clean
all: $(TARGET)
$(TARGET): ecu_sim.c
$(CC) $(CFLAGS) $(SECURITY_FLAGS) -o $@ $<
@echo "=== Build complete ==="
clean:
rm -f $(TARGET)
docker-build:
docker build -t canopysaurus-challenge .
docker-run:
docker run --rm -it --privileged canopysaurus-challenge