From 9ab31d2b6db926b4c30ba10f5613505036a50fb7 Mon Sep 17 00:00:00 2001 From: Abdelrahman Said Date: Tue, 16 May 2023 00:09:23 +0100 Subject: [PATCH] Add Makefile --- Makefile | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..58f8c0f --- /dev/null +++ b/Makefile @@ -0,0 +1,7 @@ +CC=clang +CFLAGS=-g -Wall -Werror -pedantic +SRC=*.c +OUT=main + +all: $(SRC) + $(CC) $(CFLAGS) $(SRC) -o $(OUT)