aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorCharles <sircharlesaze@gmail.com>2019-09-17 17:08:10 +0200
committerCharles <sircharlesaze@gmail.com>2019-09-17 17:08:10 +0200
commit95b209426dd7a9f844cf1aa093a2b1c4301f049b (patch)
treed52a30d085147646071b6d6fe96a1aae411339a4 /Makefile
parent6f826d798eaaf01d2025de791985427faa0a6a6b (diff)
downloadmandelbrot-95b209426dd7a9f844cf1aa093a2b1c4301f049b.tar.gz
mandelbrot-95b209426dd7a9f844cf1aa093a2b1c4301f049b.tar.bz2
mandelbrot-95b209426dd7a9f844cf1aa093a2b1c4301f049b.zip
Options
A Config struct and more getopt options for window size, real/imag range, center position.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index fefc439..904f534 100644
--- a/Makefile
+++ b/Makefile
@@ -1,7 +1,7 @@
NAME = mandel
CC = gcc
CCFLAGS = -Wall -Wextra
-LDFLAGS = -lm $(shell sdl2-config --libs --cflags)
+LDFLAGS = $(shell sdl2-config --libs --cflags)
HEADER = header.h
SRC = main.c graphics.c mandelbrot.c helper.c