From d7541e1b7d799e16bf1ad116abcc84eced478f31 Mon Sep 17 00:00:00 2001 From: Jesse Vincent Date: Sun, 7 Jun 2020 16:10:21 -0700 Subject: [PATCH] Add a test to the Makefile to complain if it can't find the Kaleidoscope bundle with a hint as to what the user might do to resolve things Signed-off-by: Jesse Vincent --- examples/Devices/Keyboardio/Model01/Makefile | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/examples/Devices/Keyboardio/Model01/Makefile b/examples/Devices/Keyboardio/Model01/Makefile index 996bde98..5b1d8127 100644 --- a/examples/Devices/Keyboardio/Model01/Makefile +++ b/examples/Devices/Keyboardio/Model01/Makefile @@ -48,8 +48,26 @@ KALEIDOSCOPE_BUILDER_DIR ?= $(ARDUINO_INSTALLED_ENV)/libraries/Kaleidoscope/bin/ endif +ifneq ("$(wildcard $(BOARD_HARDWARE_PATH)/$(KALEIDOSCOPE_PLUGIN_MAKEFILE_DIR)/rules.mk)","") BOARD_HARDWARE_PATH ?= $(SKETCHBOOK_DIR)/hardware KALEIDOSCOPE_PLUGIN_MAKEFILE_DIR ?= keyboardio/avr/build-tools/makefiles/ include $(BOARD_HARDWARE_PATH)/$(KALEIDOSCOPE_PLUGIN_MAKEFILE_DIR)/rules.mk + +else + +$(info ****************************************************************************) +$(info I can't find an installed copy of Kaleidoscope's source code.) +$(info ) +$(info This usually means you're attempting to build a device's firmware from a git) +$(info checkout without having previously told Arduino where to find Kaleidoscope.) +$(info ) +$(info It is probably the case that you want to move or symlink your git checkout ) +$(info of the Kaleidoscope bundle to the directory: ) +$(info ) +$(info $(SKETCHBOOK_DIR)/hardware/keyboardio ) +$(info ****************************************************************************) + + +endif