mandelbrot

Mandelbrot viewer written in C and GLSL
git clone anongit@rnpnr.xyz:mandelbrot.git
Log | Files | Refs | Feed | LICENSE

build.sh (195B)


      1 #!/bin/sh
      2 
      3 set -x
      4 
      5 cflags="-march=native -O3 -g3 -Wall "
      6 cflags="$cflags $(pkg-config --cflags glfw3 gl)"
      7 ldflags=$(pkg-config --static --libs glfw3 gl)
      8 
      9 cc $cflags main.c $ldflags -o mandelbrot