Adding libs in core
This commit is contained in:
parent
314cca6434
commit
888c800111
2
Makefile
2
Makefile
|
|
@ -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
|
||||||
|
|
|
||||||
|
|
@ -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
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue