build: add Makefile

This commit is contained in:
2025-11-14 22:32:39 +01:00
parent 7a517dd309
commit 012e532432

9
Makefile Normal file
View File

@@ -0,0 +1,9 @@
BIN = drop4
all: $(BIN)
$(BIN): drop4.c
gcc -Wall -Wextra -Werror -std=c23 -o $(BIN) drop4.c
clean:
rm -f $(BIN)