Files
tinyUSB/examples/host/midi_rx/Makefile

14 lines
221 B
Makefile
Raw Permalink Normal View History

2025-02-12 11:50:57 +07:00
include ../../build_system/make/make.mk
2022-09-11 18:17:22 +02:00
INC += \
src \
$(TOP)/hw \
2025-02-12 11:50:57 +07:00
2022-09-11 18:17:22 +02:00
# Example source
2025-02-12 11:50:57 +07:00
EXAMPLE_SOURCE += \
src/main.c
2022-09-11 18:17:22 +02:00
SRC_C += $(addprefix $(CURRENT_PATH)/, $(EXAMPLE_SOURCE))
2025-02-12 11:50:57 +07:00
include ../../build_system/make/rules.mk