This commit is contained in:
alexvoste
2026-05-07 02:22:25 +03:00
commit 1a9fd27a31
226 changed files with 29188 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
CC = gcc
CFLAGS = -Wall -Wextra -O2
TARGET = ../build
all: $(TARGET)
$(TARGET): build.c
$(CC) $(CFLAGS) -o $@ $<
@echo "Build script is ready at: $(TARGET)"
clean:
rm -f $(TARGET)
.PHONY: all clean
+2496
View File
File diff suppressed because it is too large Load Diff