summaryrefslogtreecommitdiff
path: root/examples/host/midi2_host_feather/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'examples/host/midi2_host_feather/Makefile')
-rw-r--r--examples/host/midi2_host_feather/Makefile27
1 files changed, 0 insertions, 27 deletions
diff --git a/examples/host/midi2_host_feather/Makefile b/examples/host/midi2_host_feather/Makefile
deleted file mode 100644
index 933d19434..000000000
--- a/examples/host/midi2_host_feather/Makefile
+++ /dev/null
@@ -1,27 +0,0 @@
-# This example requires RP2040 (PIO-USB, Pico SDK I2C, SSD1306 display)
-ifeq (,$(findstring rp2040,$(FAMILY)))
-$(info Skipping midi2_host_feather: requires FAMILY=rp2040)
-all:
- @:
-.DEFAULT:
- @:
-else
-
-include ../../../hw/bsp/family_support.mk
-
-INC += \
- src \
-
-# Example source
-EXAMPLE_SOURCE += \
- src/main.c \
- src/display.c \
-
-SRC_C += $(addprefix $(EXAMPLE_PATH)/, $(EXAMPLE_SOURCE))
-
-# Suppress pre-existing warning
-CFLAGS_GCC += -Wno-type-limits
-
-include ../../../hw/bsp/family_rules.mk
-
-endif