commit 9ab31d2b6db926b4c30ba10f5613505036a50fb7 Author: Abdelrahman Said Date: Tue May 16 00:09:23 2023 +0100 Add 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)