mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2025-01-14 05:43:56 +00:00
7 lines
192 B
Makefile
7 lines
192 B
Makefile
|
CORE_DIR = $(PROJECT_ROOT)/core
|
||
|
|
||
|
CFLAGS += -I$(CORE_DIR)
|
||
|
ASM_SOURCES += $(wildcard $(CORE_DIR)/*.s)
|
||
|
C_SOURCES += $(wildcard $(CORE_DIR)/*.c)
|
||
|
CPP_SOURCES += $(wildcard $(CORE_DIR)/*.cpp)
|