aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorCharles <sircharlesaze@gmail.com>2019-09-22 11:44:30 +0200
committerCharles <sircharlesaze@gmail.com>2019-09-22 11:44:30 +0200
commitc5008a4e62fb83eb71f5f94f622c01f2d8fe8b6b (patch)
tree02d1f84aca29c95e999156848a86d61c292b7208 /Makefile
parent5efde1e3e65af769cb629d55f0a4dd4f87caebe9 (diff)
downloadmandelbrot_cpu-c5008a4e62fb83eb71f5f94f622c01f2d8fe8b6b.tar.gz
mandelbrot_cpu-c5008a4e62fb83eb71f5f94f622c01f2d8fe8b6b.tar.bz2
mandelbrot_cpu-c5008a4e62fb83eb71f5f94f622c01f2d8fe8b6b.zip
Supersampling
- Random supersampling (prettier but quite slow) - WIP: bette color gradient
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 85660a0..11997f9 100644
--- a/Makefile
+++ b/Makefile
@@ -1,7 +1,7 @@
NAME = mandel
CC = gcc
CCFLAGS = -Wall -Wextra
-LDFLAGS = -lpthread $(shell sdl2-config --libs --cflags)
+LDFLAGS = -lm -lpthread $(shell sdl2-config --libs --cflags)
HEADER = header.h
SRC = main.c graphics.c mandelbrot.c helper.c