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