CFLAGS = -Wall -Wextra -std=c99 -g all: code code: src/project.c gcc $(CFLAGS) src/project.c -o project test: gcc $(CFLAGS) tst/test.c -o test && ./test clean: rm -f project test