From fccf1c62763f25cbc580e9ad066e85fc168108a0 Mon Sep 17 00:00:00 2001 From: Quinn Date: Sat, 22 Mar 2025 11:56:02 +0100 Subject: [PATCH] fix: did not include SDL2_ttf in new version --- makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/makefile b/makefile index 534b70c..e5c5061 100644 --- a/makefile +++ b/makefile @@ -12,8 +12,8 @@ NAME := $(shell basename $(PWD)) CC := clang STD := c17 LANG = c -CFLAGS := $(shell pkg-config --cflags sdl2) -Wall -Wextra -Wpedantic -Wno-pointer-arith -LDFLAGS := $(shell pkg-config --libs sdl2) -lm +CFLAGS := $(shell pkg-config --cflags sdl2 SDL2_ttf) -Wall -Wextra -Wpedantic -Wno-pointer-arith +LDFLAGS := $(shell pkg-config --libs sdl2 SDL2_ttf) -lm DEBUG ?= 0 ifeq ($(DEBUG),1)