Add Makefile

This commit is contained in:
Abdelrahman Said 2023-05-16 00:09:23 +01:00
commit 9ab31d2b6d

7
Makefile Normal file
View File

@ -0,0 +1,7 @@
CC=clang
CFLAGS=-g -Wall -Werror -pedantic
SRC=*.c
OUT=main
all: $(SRC)
$(CC) $(CFLAGS) $(SRC) -o $(OUT)