From 7c48d434f0a68ac47ebe1bd66daa2c86842979c7 Mon Sep 17 00:00:00 2001 From: Charles Date: Tue, 27 Aug 2019 17:24:45 +0200 Subject: SDL boilerplate window init, quit and run functions. Error handling. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Makefile') 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 -- cgit