pikuma_graphics_from_scratch/Makefile
2024-04-13 00:51:28 -04:00

11 lines
156 B
Makefile

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