summaryrefslogtreecommitdiff
path: root/examples/device/printer_to_hid/Makefile
diff options
context:
space:
mode:
authorRémi Berthoz <[email protected]>2026-01-04 16:55:43 +0100
committerRémi Berthoz <[email protected]>2026-01-04 16:55:43 +0100
commitcab1b2f6f741ea151e87f139b2115d5234228bbd (patch)
tree6dc6919379d01d30b5df91619f56e8c8e855e6bd /examples/device/printer_to_hid/Makefile
parent3eafddb02a3347873dc1816f53b428518eb97c61 (diff)
Implement Printer Device Class
Diffstat (limited to 'examples/device/printer_to_hid/Makefile')
-rw-r--r--examples/device/printer_to_hid/Makefile11
1 files changed, 11 insertions, 0 deletions
diff --git a/examples/device/printer_to_hid/Makefile b/examples/device/printer_to_hid/Makefile
new file mode 100644
index 000000000..1a4b428dc
--- /dev/null
+++ b/examples/device/printer_to_hid/Makefile
@@ -0,0 +1,11 @@
+include ../../../hw/bsp/family_support.mk
+
+INC += \
+ src \
+
+
+# Example source
+EXAMPLE_SOURCE += $(wildcard src/*.c)
+SRC_C += $(addprefix $(EXAMPLE_PATH)/, $(EXAMPLE_SOURCE))
+
+include ../../../hw/bsp/family_rules.mk