custom-memory-allocator/Makefile
2023-05-17 00:07:46 +01:00

8 lines
115 B
Makefile

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