summaryrefslogtreecommitdiff
path: root/examples/host/audio_host/Makefile
diff options
context:
space:
mode:
authorZixun LI <[email protected]>2026-09-04 10:49:44 +0200
committerGitHub <[email protected]>2026-09-04 10:49:44 +0200
commit29851564af08cb4909175315d20c71f5eca13040 (patch)
tree32d417cc4f80d87b54cf16d31636b2f758525ab7 /examples/host/audio_host/Makefile
parentf89e21aa66ce142d7b959cd9fc2a45d47834f121 (diff)
parentef404be0337b1486b0a45acd248639ac8dea6c15 (diff)
Merge pull request #3774 from zjzhang-cn/feature/tuh-audio-uac-1.0HEADmaster
feat(audio): add USB Audio Host (UAC 1.0/2.0) support
Diffstat (limited to 'examples/host/audio_host/Makefile')
-rw-r--r--examples/host/audio_host/Makefile14
1 files changed, 14 insertions, 0 deletions
diff --git a/examples/host/audio_host/Makefile b/examples/host/audio_host/Makefile
new file mode 100644
index 000000000..5c2e23184
--- /dev/null
+++ b/examples/host/audio_host/Makefile
@@ -0,0 +1,14 @@
+include ../../../hw/bsp/family_support.mk
+
+INC += \
+ src \
+
+
+# Example source
+EXAMPLE_SOURCE += \
+ src/audio_app.c \
+ src/main.c
+
+SRC_C += $(addprefix $(EXAMPLE_PATH)/, $(EXAMPLE_SOURCE))
+
+include ../../../hw/bsp/family_rules.mk