summaryrefslogtreecommitdiff
path: root/examples/device/cdc_uac2/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'examples/device/cdc_uac2/Makefile')
-rw-r--r--examples/device/cdc_uac2/Makefile16
1 files changed, 16 insertions, 0 deletions
diff --git a/examples/device/cdc_uac2/Makefile b/examples/device/cdc_uac2/Makefile
new file mode 100644
index 000000000..21dcdb0b2
--- /dev/null
+++ b/examples/device/cdc_uac2/Makefile
@@ -0,0 +1,16 @@
+include ../../build_system/make/make.mk
+
+INC += \
+ src \
+ $(TOP)/hw \
+
+# Example source
+EXAMPLE_SOURCE += \
+ src/cdc_app.c \
+ src/main.c \
+ src/uac2_app.c \
+ src/usb_descriptors.c \
+
+SRC_C += $(addprefix $(CURRENT_PATH)/, $(EXAMPLE_SOURCE))
+
+include ../../build_system/make/rules.mk