2020-10-26 17:00:17 +00:00
|
|
|
ASSETS_DIR := $(PROJECT_ROOT)/assets
|
2021-06-23 14:58:44 +00:00
|
|
|
ASSETS_COMPILLER := $(PROJECT_ROOT)/scripts/assets.py
|
|
|
|
ASSETS_COMPILED_DIR := $(ASSETS_DIR)/compiled
|
2020-10-26 17:00:17 +00:00
|
|
|
ASSETS_SOURCE_DIR := $(ASSETS_DIR)/icons
|
|
|
|
|
|
|
|
ASSETS_SOURCES += $(shell find $(ASSETS_SOURCE_DIR) -type f -iname '*.png' -or -iname 'frame_rate')
|
2021-06-23 14:58:44 +00:00
|
|
|
ASSETS += $(ASSETS_COMPILED_DIR)/assets_icons.c
|
2020-10-26 17:00:17 +00:00
|
|
|
|
2021-06-23 14:58:44 +00:00
|
|
|
CFLAGS += -I$(ASSETS_COMPILED_DIR)
|
|
|
|
C_SOURCES += $(ASSETS_COMPILED_DIR)/assets_icons.c
|