This commit is contained in:
Tyrel Souza 2024-04-12 00:42:16 -04:00
parent eacc6a50bc
commit 073257ceb0
2 changed files with 14 additions and 1 deletions

3
.gitignore vendored
View File

@ -1,3 +1,4 @@
.idea
renderer
cmake*
tags
tags*

12
Makefile Normal file
View File

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