pikuma_graphics_from_scratch/Makefile

11 lines
160 B
Makefile
Raw Normal View History

2024-04-12 04:42:16 +00:00
SRCS = $(shell find ./src -type f -name *.c)
build:
2024-04-19 04:02:54 +00:00
gcc -Wall -std=c99 $(SRCS) -lSDL2 -lm -o renderer
2024-04-13 04:51:28 +00:00
./renderer
2024-04-12 04:42:16 +00:00
run: build
./renderer
clean:
2024-04-13 04:51:28 +00:00
rm renderer