CFLAGS = -I lib/ -O3 -Wall -Werror -Wextra -Wpedantic build: src/main.c mkdir -p bin/ gcc $(CFLAGS) -o bin/main \ src/main.c