Adding libs in core

This commit is contained in:
Ulysse Cura 2026-05-05 09:44:13 +02:00
parent 314cca6434
commit 888c800111
2 changed files with 2 additions and 2 deletions

View File

@ -25,7 +25,7 @@ all: build_core build_src compress_assets
# Sub Makefiles # Sub Makefiles
SOURCE_DIR = src SOURCE_DIR = src
CORE_DIR = core/src CORE_DIR = core
ASSETS_DIR = assets ASSETS_DIR = assets
include $(CORE_DIR)/Makefile include $(CORE_DIR)/Makefile

View File

@ -11,7 +11,7 @@ SOURCES := \
# Compiler and flags # Compiler and flags
SRC_CC = gcc SRC_CC = gcc
SRC_CFLAGS = -Wall -Wextra -std=c17 -g SRC_CFLAGS = -Wall -Wextra -std=c17 -g
SRC_INCLUDE_DIRS = $(SOURCE_DIR)/headers $(SOURCE_DIR)/ecs/headers $(SOURCE_DIR)/ecs/components/headers $(CORE_DIR)/headers SRC_INCLUDE_DIRS = $(SOURCE_DIR)/headers $(SOURCE_DIR)/ecs/headers $(SOURCE_DIR)/ecs/components/headers $(CORE_DIR)/$(CORE_SRC_DIR)/headers
SRC_LDFLAGS = SRC_LDFLAGS =
# Deduce objects # Deduce objects