Files
tinyUSB/examples/device/audio_4_channel_mic_freertos/Makefile

16 lines
261 B
Makefile
Raw Normal View History

RTOS = freertos
2024-04-27 21:44:25 +02:00
include ../../build_system/make/make.mk
INC += \
src \
$(TOP)/hw \
# Example source
EXAMPLE_SOURCE = \
src/main.c \
src/usb_descriptors.c
2024-04-27 21:44:25 +02:00
SRC_C += $(addprefix $(CURRENT_PATH)/, $(EXAMPLE_SOURCE))
2024-04-28 00:40:36 +02:00
include ../../build_system/make/rules.mk