Update make & cmake file.

This commit is contained in:
HiFiPhile
2023-10-10 18:25:42 +02:00
parent 20699e30dd
commit 504d29cf7a
2 changed files with 17 additions and 1 deletions

View File

@@ -3,9 +3,18 @@ include ../../make.mk
INC += \
src \
$(TOP)/hw \
$(TOP)/lib/CMSIS_5/CMSIS/DSP/Include \
# Example source
EXAMPLE_SOURCE += $(wildcard src/*.c)
EXAMPLE_SOURCE += \
src/main.c \
src/usb_descriptors.c \
# CMSIS sources
SRC_C += \
lib/CMSIS_5/CMSIS/DSP/Source/CommonTables/arm_common_tables.c \
lib/CMSIS_5/CMSIS/DSP/Source/FastMathFunctions/arm_sin_q15.c \
SRC_C += $(addprefix $(CURRENT_PATH)/, $(EXAMPLE_SOURCE))
include ../../rules.mk