summaryrefslogtreecommitdiff
path: root/examples/device/hid_boot_interface/Makefile
diff options
context:
space:
mode:
authorHa Thach <[email protected]>2021-08-19 11:24:10 +0700
committerGitHub <[email protected]>2021-08-19 11:24:10 +0700
commitc4a9a04d67ffa64adf784c71b12e6c1b7bf260c3 (patch)
treeb2588ff9cbd70f2b27f0f71cb72c360813b0fe3c /examples/device/hid_boot_interface/Makefile
parent3a248951e2744ba89f5fb96eda85a971001115f0 (diff)
parentc050612142ba1ab52cce7c7141230d5108e9936b (diff)
Merge pull request #1025 from hathach/add-hid-boot-example
add hid_boot_interface example
Diffstat (limited to 'examples/device/hid_boot_interface/Makefile')
-rw-r--r--examples/device/hid_boot_interface/Makefile15
1 files changed, 15 insertions, 0 deletions
diff --git a/examples/device/hid_boot_interface/Makefile b/examples/device/hid_boot_interface/Makefile
new file mode 100644
index 000000000..138c27846
--- /dev/null
+++ b/examples/device/hid_boot_interface/Makefile
@@ -0,0 +1,15 @@
+include ../../../tools/top.mk
+include ../../make.mk
+
+INC += \
+ src \
+ $(TOP)/hw \
+
+# Example source
+EXAMPLE_SOURCE += \
+ src/main.c \
+ src/usb_descriptors.c
+
+SRC_C += $(addprefix $(CURRENT_PATH)/, $(EXAMPLE_SOURCE))
+
+include ../../rules.mk