aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorCharles <sircharlesaze@gmail.com>2019-08-27 17:24:45 +0200
committerCharles <sircharlesaze@gmail.com>2019-08-27 17:24:45 +0200
commit7c48d434f0a68ac47ebe1bd66daa2c86842979c7 (patch)
tree9cf10fa6fe88a68038eebd5ff09cc550a7fb15b7 /Makefile
parent60adb6e2f051ab72fb66541a8f48ef195317d403 (diff)
downloadmandelbrot-7c48d434f0a68ac47ebe1bd66daa2c86842979c7.tar.gz
mandelbrot-7c48d434f0a68ac47ebe1bd66daa2c86842979c7.tar.bz2
mandelbrot-7c48d434f0a68ac47ebe1bd66daa2c86842979c7.zip
SDL boilerplate window
init, quit and run functions. Error handling.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 232508f..03be06e 100644
--- a/Makefile
+++ b/Makefile
@@ -1,7 +1,7 @@
NAME = mandel
CC = gcc
CCFLAGS = -Wall -Wextra
-LDFLAGS = -lm # $(shell sdl2-config --libs --cflags)
+LDFLAGS = -lm $(shell sdl2-config --libs --cflags)
HEADER = header.h
SRC = main.c graphics.c mandelbrot.c