From af6a048bd335cbc32a15aa6e979141aed371ac2d Mon Sep 17 00:00:00 2001 From: Ulysse Cura Date: Thu, 16 Jul 2026 22:48:44 +0200 Subject: [PATCH] Corrected Makefile syntaxe. --- src/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Makefile b/src/Makefile index 2b7790e..5ba010c 100644 --- a/src/Makefile +++ b/src/Makefile @@ -9,7 +9,7 @@ CORE_SOURCES := \ # Compiler and flags CORE_CC = gcc -#CORE_CFLAGS = -std=c17 -pedantic -O3 -fPIC -DASSET_FILENAME=$(ASSET_OUTPUT) # RELEASE +#CORE_CFLAGS = -std=c17 -pedantic -O3 -fPIC -DASSET_FILENAME=$(ASSET_OUTPUT) $(shell pkg-config --cflags sdl2 SDL2_image) # RELEASE CORE_CFLAGS = -std=c17 --pedantic -g -fPIC -DASSET_FILENAME=$(BUILD_DIR)/$(ASSET_OUTPUT) $(shell pkg-config --cflags sdl2 SDL2_image) \ -Wall -Wno-missing-braces -Wextra -Wno-missing-field-initializers \ -Wformat=2 -Wswitch-default -Wswitch-enum -Wcast-align \