initial commit

This commit is contained in:
davidovski 2021-04-23 09:26:10 +01:00
commit b5e820f7c3
3 changed files with 127 additions and 0 deletions

12
Makefile Normal file
View file

@ -0,0 +1,12 @@
PROG=brotshader
CC=gcc
FLAGS=-lm `pkg-config -libs raylib`
.DEFAULT_GOAL := run
${PROG}: ${PROG}.c
${CC} ${PROG}.c -o ${PROG} ${FLAGS}
run: ${PROG}
./${PROG}