fix: did not include SDL2_ttf in new version

This commit is contained in:
2025-03-22 11:56:02 +01:00
parent f5c1f8c343
commit fccf1c6276

View File

@@ -12,8 +12,8 @@ NAME := $(shell basename $(PWD))
CC := clang CC := clang
STD := c17 STD := c17
LANG = c LANG = c
CFLAGS := $(shell pkg-config --cflags sdl2) -Wall -Wextra -Wpedantic -Wno-pointer-arith CFLAGS := $(shell pkg-config --cflags sdl2 SDL2_ttf) -Wall -Wextra -Wpedantic -Wno-pointer-arith
LDFLAGS := $(shell pkg-config --libs sdl2) -lm LDFLAGS := $(shell pkg-config --libs sdl2 SDL2_ttf) -lm
DEBUG ?= 0 DEBUG ?= 0
ifeq ($(DEBUG),1) ifeq ($(DEBUG),1)