mirror of
https://git.davidovski.xyz/glsl-mandelbrot.git
synced 2024-08-15 00:43:35 +00:00
initial commit
This commit is contained in:
commit
b5e820f7c3
3 changed files with 127 additions and 0 deletions
12
Makefile
Normal file
12
Makefile
Normal 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}
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue