summaryrefslogtreecommitdiff
path: root/examples/device/hid_multipleinterface/Makefile
diff options
context:
space:
mode:
authorZachery Littell <[email protected]>2020-10-01 13:15:37 -0500
committerZachery Littell <[email protected]>2020-10-01 13:15:37 -0500
commite21ab8d4a97ee909511cd096b440bf6255ca2c74 (patch)
tree58971afc9ed8459d85f8e681dacb762e9cd5b4be /examples/device/hid_multipleinterface/Makefile
parentb7208d6f7e97e724853eb5d0e512a23005cc8790 (diff)
create hid multiple interface example
Diffstat (limited to 'examples/device/hid_multipleinterface/Makefile')
-rw-r--r--examples/device/hid_multipleinterface/Makefile12
1 files changed, 12 insertions, 0 deletions
diff --git a/examples/device/hid_multipleinterface/Makefile b/examples/device/hid_multipleinterface/Makefile
new file mode 100644
index 000000000..69b633fea
--- /dev/null
+++ b/examples/device/hid_multipleinterface/Makefile
@@ -0,0 +1,12 @@
+include ../../../tools/top.mk
+include ../../make.mk
+
+INC += \
+ src \
+ $(TOP)/hw \
+
+# Example source
+EXAMPLE_SOURCE += $(wildcard src/*.c)
+SRC_C += $(addprefix $(CURRENT_PATH)/, $(EXAMPLE_SOURCE))
+
+include ../../rules.mk