From da0a63aa50fd8791e9593b646911a1408c1068a6 Mon Sep 17 00:00:00 2001 From: Quinn Date: Sun, 12 Jan 2025 22:51:40 +0100 Subject: [PATCH] split cflags and libs --- makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/makefile b/makefile index e4813cc..6eefba3 100644 --- a/makefile +++ b/makefile @@ -2,8 +2,8 @@ NAME = sdl_template # compiler settings CC := clang -CFLAGS := -Wall -g -LDFLAGS = $(shell sdl2-config --cflags --libs) -lm +CFLAGS = $(shell sdl2-config --cflags) -Wall -g +LDFLAGS = $(shell sdl2-config --libs) -lm # file locations DIR_BIN := bin