From ce5cf1b60dae81540b2db366b1408a961f771dcc Mon Sep 17 00:00:00 2001 From: Charles Date: Tue, 27 Aug 2019 19:04:34 +0200 Subject: 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) --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Makefile') 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 -- cgit