SRCS = $(shell find ./src -type f -name *.c) build: gcc -Wall -std=c99 $(SRCS) -lSDL2 -o renderer ./renderer run: build ./renderer clean: rm renderer