custom-memory-allocator/Makefile
2023-05-16 00:09:23 +01:00

8 lines
107 B
Makefile

CC=clang
CFLAGS=-g -Wall -Werror -pedantic
SRC=*.c
OUT=main
all: $(SRC)
$(CC) $(CFLAGS) $(SRC) -o $(OUT)