aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorCharles <sircharlesaze@gmail.com>2019-08-27 19:04:34 +0200
committerCharles <sircharlesaze@gmail.com>2019-08-27 19:04:34 +0200
commitce5cf1b60dae81540b2db366b1408a961f771dcc (patch)
tree25de8dc9727deb188f57fe01c2cf7575d5fbb4bc /Makefile
parent7c48d434f0a68ac47ebe1bd66daa2c86842979c7 (diff)
downloadmandelbrot-ce5cf1b60dae81540b2db366b1408a961f771dcc.tar.gz
mandelbrot-ce5cf1b60dae81540b2db366b1408a961f771dcc.tar.bz2
mandelbrot-ce5cf1b60dae81540b2db366b1408a961f771dcc.zip
Set visualization
Loop throught each pixel and color it black if its in the set, white otherwise. This is eavily inspired by the coding train video on the subject. (https://www.youtube.com/watch?v=6z7GQewK-Ks)
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 03be06e..dc19c48 100644
--- a/Makefile
+++ b/Makefile
@@ -4,7 +4,7 @@ CCFLAGS = -Wall -Wextra
LDFLAGS = -lm $(shell sdl2-config --libs --cflags)
HEADER = header.h
-SRC = main.c graphics.c mandelbrot.c
+SRC = main.c graphics.c mandelbrot.c helper.c
OBJ = $(SRC:.c=.o)
RM = rm -f