Files
tinyUSB/examples/device/cdc_msc_freertos/Makefile

17 lines
279 B
Makefile
Raw Normal View History

RTOS = freertos
include ../../build_system/make/make.mk
2019-05-01 14:30:48 +07:00
INC += \
src \
$(TOP)/hw \
2019-05-01 14:30:48 +07:00
# Example source
EXAMPLE_SOURCE = \
src/main.c \
src/msc_disk.c \
src/usb_descriptors.c
2019-05-01 14:30:48 +07:00
SRC_C += $(addprefix $(CURRENT_PATH)/, $(EXAMPLE_SOURCE))
include ../../build_system/make/rules.mk