Files

16 lines
266 B
Makefile
Raw Permalink Normal View History

RTOS = freertos
include ../../build_system/make/make.mk
INC += \
2024-11-21 18:44:17 +07:00
src \
$(TOP)/hw \
# Example source
EXAMPLE_SOURCE += \
src/main.c \
src/usb_descriptors.c \
SRC_C += $(addprefix $(CURRENT_PATH)/, $(EXAMPLE_SOURCE))
include ../../build_system/make/rules.mk