From 012e53243258d21452e082a42812abdd7f8be59e Mon Sep 17 00:00:00 2001 From: Kharec Date: Fri, 14 Nov 2025 22:32:39 +0100 Subject: [PATCH] build: add Makefile --- Makefile | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..a2de62a --- /dev/null +++ b/Makefile @@ -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) \ No newline at end of file