parent
6ef1570964
commit
80c00d5e24
@ -0,0 +1,48 @@
|
|||||||
|
# This makefile for a Kaleidoscope sketch pulls in all the targets
|
||||||
|
# required to build the example
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
ifneq ($(KALEIDOSCOPE_DIR),)
|
||||||
|
search_path += $(KALEIDOSCOPE_DIR)
|
||||||
|
endif
|
||||||
|
|
||||||
|
ifneq ($(ARDUINO_DIRECTORIES_USER),)
|
||||||
|
search_path += $(ARDUINO_DIRECTORIES_USER)/hardware/keyboardio/avr/libraries/Kaleidoscope
|
||||||
|
endif
|
||||||
|
|
||||||
|
ifeq ($(shell uname -s),Darwin)
|
||||||
|
search_path += $(HOME)/Documents/Arduino/hardware/keyboardio/avr/libraries/Kaleidoscope
|
||||||
|
else
|
||||||
|
search_path += $(HOME)/Arduino/hardware/keyboardio/avr/libraries/Kaleidoscope
|
||||||
|
endif
|
||||||
|
|
||||||
|
sketch_makefile := etc/makefiles/sketch.mk
|
||||||
|
|
||||||
|
$(foreach candidate, $(search_path), $(if $(wildcard $(candidate)/$(sketch_makefile)), $(eval ks_dir ?= $(candidate))))
|
||||||
|
|
||||||
|
ifneq ($(ks_dir),)
|
||||||
|
|
||||||
|
$(info Using Kaleidoscope from $(ks_dir))
|
||||||
|
|
||||||
|
export KALEIDOSCOPE_DIR := $(ks_dir)
|
||||||
|
include $(ks_dir)/$(sketch_makefile)
|
||||||
|
|
||||||
|
else
|
||||||
|
|
||||||
|
$(info I can't find your Kaleidoscope installation.)
|
||||||
|
$(info )
|
||||||
|
$(info I tried looking in:)
|
||||||
|
$(info )
|
||||||
|
$(foreach candidate, $(search_path), $(info $(candidate)))
|
||||||
|
$(info )
|
||||||
|
$(info The easiest way to fix this is to set the 'KALEIDOSCOPE_DIR' environment)
|
||||||
|
$(info variable to the location of your Kaleidoscope directory.)
|
||||||
|
|
||||||
|
endif
|
||||||
|
|
||||||
|
|
||||||
|
null-target:
|
||||||
|
$(info You should never see this message)
|
||||||
|
@:
|
@ -1,55 +1,48 @@
|
|||||||
# This stub makefile for a Kaleidoscope example pulls in all the targets
|
# This makefile for a Kaleidoscope sketch pulls in all the targets
|
||||||
# required to build the example
|
# required to build the example
|
||||||
|
|
||||||
UNAME_S := $(shell uname -s)
|
|
||||||
|
|
||||||
ifeq ($(UNAME_S),Darwin)
|
|
||||||
SKETCHBOOK_DIR ?= $(HOME)/Documents/Arduino
|
|
||||||
PACKAGE_DIR ?= $(HOME)/Library/Arduino15
|
ifneq ($(KALEIDOSCOPE_DIR),)
|
||||||
|
search_path += $(KALEIDOSCOPE_DIR)
|
||||||
|
endif
|
||||||
|
|
||||||
|
ifneq ($(ARDUINO_DIRECTORIES_USER),)
|
||||||
|
search_path += $(ARDUINO_DIRECTORIES_USER)/hardware/keyboardio/avr/libraries/Kaleidoscope
|
||||||
|
endif
|
||||||
|
|
||||||
|
ifeq ($(shell uname -s),Darwin)
|
||||||
|
search_path += $(HOME)/Documents/Arduino/hardware/keyboardio/avr/libraries/Kaleidoscope
|
||||||
else
|
else
|
||||||
SKETCHBOOK_DIR ?= $(HOME)/Arduino
|
search_path += $(HOME)/Arduino/hardware/keyboardio/avr/libraries/Kaleidoscope
|
||||||
PACKAGE_DIR ?= $(HOME)/.arduino15
|
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
sketch_makefile := etc/makefiles/sketch.mk
|
||||||
|
|
||||||
ARDUINO_INSTALLED_ENV=$(shell ls -dt $(PACKAGE_DIR)/packages/keyboardio/hardware/avr 2>/dev/null |head -n 1)
|
$(foreach candidate, $(search_path), $(if $(wildcard $(candidate)/$(sketch_makefile)), $(eval ks_dir ?= $(candidate))))
|
||||||
MANUALLY_INSTALLED_ENV=$(shell ls -dt $(SKETCHBOOK_DIR)/hardware/keyboardio/avr 2>/dev/null |head -n 1)
|
|
||||||
|
|
||||||
|
ifneq ($(ks_dir),)
|
||||||
|
|
||||||
|
$(info Using Kaleidoscope from $(ks_dir))
|
||||||
|
|
||||||
ifneq ("$(wildcard $(ARDUINO_INSTALLED_ENV)/boards.txt)","")
|
export KALEIDOSCOPE_DIR := $(ks_dir)
|
||||||
|
include $(ks_dir)/$(sketch_makefile)
|
||||||
|
|
||||||
ifneq ("$(wildcard $(MANUALLY_INSTALLED_ENV)/boards.txt)","")
|
else
|
||||||
|
|
||||||
$(info ***************************************************************************)
|
$(info I can't find your Kaleidoscope installation.)
|
||||||
$(info It appears that you have installed two copies of Kaleidoscope. One copy was)
|
|
||||||
$(info installed using Arduino's "Board Manager", while the other was installed by)
|
|
||||||
$(info hand, probably using "git".)
|
|
||||||
$(info )
|
|
||||||
$(info This will likely cause some trouble as you try to build keyboard firmware)
|
|
||||||
$(info using Kaleidoscope. You may want to remove either: )
|
|
||||||
$(info )
|
$(info )
|
||||||
$(info $(PACKAGE_DIR)/packages/keyboardio/ which was installed using Arduino)
|
$(info I tried looking in:)
|
||||||
$(info )
|
$(info )
|
||||||
$(info or)
|
$(foreach candidate, $(search_path), $(info $(candidate)))
|
||||||
$(info )
|
$(info )
|
||||||
$(info $(SKETCHBOOK_DIR)/hardware/keyboardio/ which was installed by hand.)
|
$(info The easiest way to fix this is to set the 'KALEIDOSCOPE_DIR' environment)
|
||||||
$(info )
|
$(info variable to the location of your Kaleidoscope directory.)
|
||||||
$(info ***************************************************************************)
|
|
||||||
$(info )
|
|
||||||
|
|
||||||
endif
|
|
||||||
|
|
||||||
BOARD_HARDWARE_PATH = $(ARDUINO_INSTALLED_ENV)
|
|
||||||
KALEIDOSCOPE_PLUGIN_MAKEFILE_DIR ?= build-tools/makefiles/
|
|
||||||
KALEIDOSCOPE_BUILDER_DIR ?= $(ARDUINO_INSTALLED_ENV)/libraries/Kaleidoscope/bin/
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
|
||||||
BOARD_HARDWARE_PATH ?= $(SKETCHBOOK_DIR)/hardware
|
null-target:
|
||||||
KALEIDOSCOPE_PLUGIN_MAKEFILE_DIR ?= keyboardio/avr/build-tools/makefiles/
|
$(info You should never see this message)
|
||||||
|
@:
|
||||||
include $(BOARD_HARDWARE_PATH)/$(KALEIDOSCOPE_PLUGIN_MAKEFILE_DIR)/rules.mk
|
|
||||||
|
@ -1,55 +1,48 @@
|
|||||||
# This stub makefile for a Kaleidoscope example pulls in all the targets
|
# This makefile for a Kaleidoscope sketch pulls in all the targets
|
||||||
# required to build the example
|
# required to build the example
|
||||||
|
|
||||||
UNAME_S := $(shell uname -s)
|
|
||||||
|
|
||||||
ifeq ($(UNAME_S),Darwin)
|
|
||||||
SKETCHBOOK_DIR ?= $(HOME)/Documents/Arduino
|
|
||||||
PACKAGE_DIR ?= $(HOME)/Library/Arduino15
|
ifneq ($(KALEIDOSCOPE_DIR),)
|
||||||
|
search_path += $(KALEIDOSCOPE_DIR)
|
||||||
|
endif
|
||||||
|
|
||||||
|
ifneq ($(ARDUINO_DIRECTORIES_USER),)
|
||||||
|
search_path += $(ARDUINO_DIRECTORIES_USER)/hardware/keyboardio/avr/libraries/Kaleidoscope
|
||||||
|
endif
|
||||||
|
|
||||||
|
ifeq ($(shell uname -s),Darwin)
|
||||||
|
search_path += $(HOME)/Documents/Arduino/hardware/keyboardio/avr/libraries/Kaleidoscope
|
||||||
else
|
else
|
||||||
SKETCHBOOK_DIR ?= $(HOME)/Arduino
|
search_path += $(HOME)/Arduino/hardware/keyboardio/avr/libraries/Kaleidoscope
|
||||||
PACKAGE_DIR ?= $(HOME)/.arduino15
|
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
sketch_makefile := etc/makefiles/sketch.mk
|
||||||
|
|
||||||
ARDUINO_INSTALLED_ENV=$(shell ls -dt $(PACKAGE_DIR)/packages/keyboardio/hardware/avr 2>/dev/null |head -n 1)
|
$(foreach candidate, $(search_path), $(if $(wildcard $(candidate)/$(sketch_makefile)), $(eval ks_dir ?= $(candidate))))
|
||||||
MANUALLY_INSTALLED_ENV=$(shell ls -dt $(SKETCHBOOK_DIR)/hardware/keyboardio/avr 2>/dev/null |head -n 1)
|
|
||||||
|
|
||||||
|
ifneq ($(ks_dir),)
|
||||||
|
|
||||||
|
$(info Using Kaleidoscope from $(ks_dir))
|
||||||
|
|
||||||
ifneq ("$(wildcard $(ARDUINO_INSTALLED_ENV)/boards.txt)","")
|
export KALEIDOSCOPE_DIR := $(ks_dir)
|
||||||
|
include $(ks_dir)/$(sketch_makefile)
|
||||||
|
|
||||||
ifneq ("$(wildcard $(MANUALLY_INSTALLED_ENV)/boards.txt)","")
|
else
|
||||||
|
|
||||||
$(info ***************************************************************************)
|
$(info I can't find your Kaleidoscope installation.)
|
||||||
$(info It appears that you have installed two copies of Kaleidoscope. One copy was)
|
|
||||||
$(info installed using Arduino's "Board Manager", while the other was installed by)
|
|
||||||
$(info hand, probably using "git".)
|
|
||||||
$(info )
|
|
||||||
$(info This will likely cause some trouble as you try to build keyboard firmware)
|
|
||||||
$(info using Kaleidoscope. You may want to remove either: )
|
|
||||||
$(info )
|
$(info )
|
||||||
$(info $(PACKAGE_DIR)/packages/keyboardio/ which was installed using Arduino)
|
$(info I tried looking in:)
|
||||||
$(info )
|
$(info )
|
||||||
$(info or)
|
$(foreach candidate, $(search_path), $(info $(candidate)))
|
||||||
$(info )
|
$(info )
|
||||||
$(info $(SKETCHBOOK_DIR)/hardware/keyboardio/ which was installed by hand.)
|
$(info The easiest way to fix this is to set the 'KALEIDOSCOPE_DIR' environment)
|
||||||
$(info )
|
$(info variable to the location of your Kaleidoscope directory.)
|
||||||
$(info ***************************************************************************)
|
|
||||||
$(info )
|
|
||||||
|
|
||||||
endif
|
|
||||||
|
|
||||||
BOARD_HARDWARE_PATH = $(ARDUINO_INSTALLED_ENV)
|
|
||||||
KALEIDOSCOPE_PLUGIN_MAKEFILE_DIR ?= build-tools/makefiles/
|
|
||||||
KALEIDOSCOPE_BUILDER_DIR ?= $(ARDUINO_INSTALLED_ENV)/libraries/Kaleidoscope/bin/
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
|
||||||
BOARD_HARDWARE_PATH ?= $(SKETCHBOOK_DIR)/hardware
|
null-target:
|
||||||
KALEIDOSCOPE_PLUGIN_MAKEFILE_DIR ?= keyboardio/avr/build-tools/makefiles/
|
$(info You should never see this message)
|
||||||
|
@:
|
||||||
include $(BOARD_HARDWARE_PATH)/$(KALEIDOSCOPE_PLUGIN_MAKEFILE_DIR)/rules.mk
|
|
||||||
|
@ -1,56 +1,48 @@
|
|||||||
# This stub makefile for a Kaleidoscope example pulls in all the targets
|
# This makefile for a Kaleidoscope sketch pulls in all the targets
|
||||||
# required to build the example
|
# required to build the example
|
||||||
|
|
||||||
UNAME_S := $(shell uname -s)
|
|
||||||
|
|
||||||
ifeq ($(UNAME_S),Darwin)
|
|
||||||
SKETCHBOOK_DIR ?= $(HOME)/Documents/Arduino
|
|
||||||
PACKAGE_DIR ?= $(HOME)/Library/Arduino15
|
ifneq ($(KALEIDOSCOPE_DIR),)
|
||||||
else
|
search_path += $(KALEIDOSCOPE_DIR)
|
||||||
SKETCHBOOK_DIR ?= $(HOME)/Arduino
|
|
||||||
PACKAGE_DIR ?= $(HOME)/.arduino15
|
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
ifneq ($(ARDUINO_DIRECTORIES_USER),)
|
||||||
|
search_path += $(ARDUINO_DIRECTORIES_USER)/hardware/keyboardio/avr/libraries/Kaleidoscope
|
||||||
|
endif
|
||||||
|
|
||||||
|
ifeq ($(shell uname -s),Darwin)
|
||||||
|
search_path += $(HOME)/Documents/Arduino/hardware/keyboardio/avr/libraries/Kaleidoscope
|
||||||
|
else
|
||||||
|
search_path += $(HOME)/Arduino/hardware/keyboardio/avr/libraries/Kaleidoscope
|
||||||
|
endif
|
||||||
|
|
||||||
ARDUINO_INSTALLED_ENV=$(shell ls -dt $(PACKAGE_DIR)/packages/keyboardio/hardware/avr 2>/dev/null |head -n 1)
|
sketch_makefile := etc/makefiles/sketch.mk
|
||||||
MANUALLY_INSTALLED_ENV=$(shell ls -dt $(SKETCHBOOK_DIR)/hardware/keyboardio/avr 2>/dev/null |head -n 1)
|
|
||||||
|
|
||||||
|
$(foreach candidate, $(search_path), $(if $(wildcard $(candidate)/$(sketch_makefile)), $(eval ks_dir ?= $(candidate))))
|
||||||
|
|
||||||
|
ifneq ($(ks_dir),)
|
||||||
|
|
||||||
ifneq ("$(wildcard $(ARDUINO_INSTALLED_ENV)/boards.txt)","")
|
$(info Using Kaleidoscope from $(ks_dir))
|
||||||
|
|
||||||
ifneq ("$(wildcard $(MANUALLY_INSTALLED_ENV)/boards.txt)","")
|
export KALEIDOSCOPE_DIR := $(ks_dir)
|
||||||
|
include $(ks_dir)/$(sketch_makefile)
|
||||||
|
|
||||||
$(info ***************************************************************************)
|
else
|
||||||
$(info It appears that you have installed two copies of Kaleidoscope. One copy was)
|
|
||||||
$(info installed using Arduino's "Board Manager", while the other was installed by)
|
$(info I can't find your Kaleidoscope installation.)
|
||||||
$(info hand, probably using "git".)
|
|
||||||
$(info )
|
|
||||||
$(info This will likely cause some trouble as you try to build keyboard firmware)
|
|
||||||
$(info using Kaleidoscope. You may want to remove either: )
|
|
||||||
$(info )
|
|
||||||
$(info $(PACKAGE_DIR)/packages/keyboardio/ which was installed using Arduino)
|
|
||||||
$(info )
|
|
||||||
$(info or)
|
|
||||||
$(info )
|
$(info )
|
||||||
$(info $(SKETCHBOOK_DIR)/hardware/keyboardio/ which was installed by hand.)
|
$(info I tried looking in:)
|
||||||
$(info )
|
$(info )
|
||||||
$(info ***************************************************************************)
|
$(foreach candidate, $(search_path), $(info $(candidate)))
|
||||||
$(info )
|
$(info )
|
||||||
|
$(info The easiest way to fix this is to set the 'KALEIDOSCOPE_DIR' environment)
|
||||||
|
$(info variable to the location of your Kaleidoscope directory.)
|
||||||
|
|
||||||
endif
|
endif
|
||||||
|
|
||||||
BOARD_HARDWARE_PATH = $(ARDUINO_INSTALLED_ENV)
|
|
||||||
KALEIDOSCOPE_PLUGIN_MAKEFILE_DIR ?= build-tools/makefiles/
|
|
||||||
KALEIDOSCOPE_BUILDER_DIR ?= $(ARDUINO_INSTALLED_ENV)/libraries/Kaleidoscope/bin/
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
endif
|
|
||||||
|
|
||||||
|
|
||||||
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
|
null-target:
|
||||||
|
$(info You should never see this message)
|
||||||
|
@:
|
||||||
|
@ -1,55 +1,48 @@
|
|||||||
# This stub makefile for a Kaleidoscope example pulls in all the targets
|
# This makefile for a Kaleidoscope sketch pulls in all the targets
|
||||||
# required to build the example
|
# required to build the example
|
||||||
|
|
||||||
UNAME_S := $(shell uname -s)
|
|
||||||
|
|
||||||
ifeq ($(UNAME_S),Darwin)
|
|
||||||
SKETCHBOOK_DIR ?= $(HOME)/Documents/Arduino
|
|
||||||
PACKAGE_DIR ?= $(HOME)/Library/Arduino15
|
ifneq ($(KALEIDOSCOPE_DIR),)
|
||||||
|
search_path += $(KALEIDOSCOPE_DIR)
|
||||||
|
endif
|
||||||
|
|
||||||
|
ifneq ($(ARDUINO_DIRECTORIES_USER),)
|
||||||
|
search_path += $(ARDUINO_DIRECTORIES_USER)/hardware/keyboardio/avr/libraries/Kaleidoscope
|
||||||
|
endif
|
||||||
|
|
||||||
|
ifeq ($(shell uname -s),Darwin)
|
||||||
|
search_path += $(HOME)/Documents/Arduino/hardware/keyboardio/avr/libraries/Kaleidoscope
|
||||||
else
|
else
|
||||||
SKETCHBOOK_DIR ?= $(HOME)/Arduino
|
search_path += $(HOME)/Arduino/hardware/keyboardio/avr/libraries/Kaleidoscope
|
||||||
PACKAGE_DIR ?= $(HOME)/.arduino15
|
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
sketch_makefile := etc/makefiles/sketch.mk
|
||||||
|
|
||||||
ARDUINO_INSTALLED_ENV=$(shell ls -dt $(PACKAGE_DIR)/packages/keyboardio/hardware/avr 2>/dev/null |head -n 1)
|
$(foreach candidate, $(search_path), $(if $(wildcard $(candidate)/$(sketch_makefile)), $(eval ks_dir ?= $(candidate))))
|
||||||
MANUALLY_INSTALLED_ENV=$(shell ls -dt $(SKETCHBOOK_DIR)/hardware/keyboardio/avr 2>/dev/null |head -n 1)
|
|
||||||
|
|
||||||
|
ifneq ($(ks_dir),)
|
||||||
|
|
||||||
|
$(info Using Kaleidoscope from $(ks_dir))
|
||||||
|
|
||||||
ifneq ("$(wildcard $(ARDUINO_INSTALLED_ENV)/boards.txt)","")
|
export KALEIDOSCOPE_DIR := $(ks_dir)
|
||||||
|
include $(ks_dir)/$(sketch_makefile)
|
||||||
|
|
||||||
ifneq ("$(wildcard $(MANUALLY_INSTALLED_ENV)/boards.txt)","")
|
else
|
||||||
|
|
||||||
$(info ***************************************************************************)
|
$(info I can't find your Kaleidoscope installation.)
|
||||||
$(info It appears that you have installed two copies of Kaleidoscope. One copy was)
|
|
||||||
$(info installed using Arduino's "Board Manager", while the other was installed by)
|
|
||||||
$(info hand, probably using "git".)
|
|
||||||
$(info )
|
|
||||||
$(info This will likely cause some trouble as you try to build keyboard firmware)
|
|
||||||
$(info using Kaleidoscope. You may want to remove either: )
|
|
||||||
$(info )
|
$(info )
|
||||||
$(info $(PACKAGE_DIR)/packages/keyboardio/ which was installed using Arduino)
|
$(info I tried looking in:)
|
||||||
$(info )
|
$(info )
|
||||||
$(info or)
|
$(foreach candidate, $(search_path), $(info $(candidate)))
|
||||||
$(info )
|
$(info )
|
||||||
$(info $(SKETCHBOOK_DIR)/hardware/keyboardio/ which was installed by hand.)
|
$(info The easiest way to fix this is to set the 'KALEIDOSCOPE_DIR' environment)
|
||||||
$(info )
|
$(info variable to the location of your Kaleidoscope directory.)
|
||||||
$(info ***************************************************************************)
|
|
||||||
$(info )
|
|
||||||
|
|
||||||
endif
|
|
||||||
|
|
||||||
BOARD_HARDWARE_PATH = $(ARDUINO_INSTALLED_ENV)
|
|
||||||
KALEIDOSCOPE_PLUGIN_MAKEFILE_DIR ?= build-tools/makefiles/
|
|
||||||
KALEIDOSCOPE_BUILDER_DIR ?= $(ARDUINO_INSTALLED_ENV)/libraries/Kaleidoscope/bin/
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
|
||||||
BOARD_HARDWARE_PATH ?= $(SKETCHBOOK_DIR)/hardware
|
null-target:
|
||||||
KALEIDOSCOPE_PLUGIN_MAKEFILE_DIR ?= keyboardio/avr/build-tools/makefiles/
|
$(info You should never see this message)
|
||||||
|
@:
|
||||||
include $(BOARD_HARDWARE_PATH)/$(KALEIDOSCOPE_PLUGIN_MAKEFILE_DIR)/rules.mk
|
|
||||||
|
@ -1,71 +1,48 @@
|
|||||||
# This stub makefile for a Kaleidoscope example pulls in all the targets
|
# This makefile for a Kaleidoscope sketch pulls in all the targets
|
||||||
# required to build the example
|
# required to build the example
|
||||||
|
|
||||||
UNAME_S := $(shell uname -s)
|
|
||||||
|
|
||||||
ifeq ($(UNAME_S),Darwin)
|
|
||||||
SKETCHBOOK_DIR ?= $(HOME)/Documents/Arduino
|
|
||||||
PACKAGE_DIR ?= $(HOME)/Library/Arduino15
|
|
||||||
else
|
|
||||||
SKETCHBOOK_DIR ?= $(HOME)/Arduino
|
|
||||||
PACKAGE_DIR ?= $(HOME)/.arduino15
|
|
||||||
endif
|
|
||||||
|
|
||||||
|
|
||||||
ARDUINO_INSTALLED_ENV=$(shell ls -dt $(PACKAGE_DIR)/packages/keyboardio/hardware/avr 2>/dev/null |head -n 1)
|
|
||||||
MANUALLY_INSTALLED_ENV=$(shell ls -dt $(SKETCHBOOK_DIR)/hardware/keyboardio/avr 2>/dev/null |head -n 1)
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
ifneq ("$(wildcard $(ARDUINO_INSTALLED_ENV)/boards.txt)","")
|
ifneq ($(KALEIDOSCOPE_DIR),)
|
||||||
|
search_path += $(KALEIDOSCOPE_DIR)
|
||||||
ifneq ("$(wildcard $(MANUALLY_INSTALLED_ENV)/boards.txt)","")
|
endif
|
||||||
|
|
||||||
$(info ***************************************************************************)
|
ifneq ($(ARDUINO_DIRECTORIES_USER),)
|
||||||
$(info It appears that you have installed two copies of Kaleidoscope. One copy was)
|
search_path += $(ARDUINO_DIRECTORIES_USER)/hardware/keyboardio/avr/libraries/Kaleidoscope
|
||||||
$(info installed using Arduino's "Board Manager", while the other was installed by)
|
endif
|
||||||
$(info hand, probably using "git".)
|
|
||||||
$(info )
|
|
||||||
$(info This will likely cause some trouble as you try to build keyboard firmware)
|
|
||||||
$(info using Kaleidoscope. You may want to remove either: )
|
|
||||||
$(info )
|
|
||||||
$(info $(PACKAGE_DIR)/packages/keyboardio/ which was installed using Arduino)
|
|
||||||
$(info )
|
|
||||||
$(info or)
|
|
||||||
$(info )
|
|
||||||
$(info $(SKETCHBOOK_DIR)/hardware/keyboardio/ which was installed by hand.)
|
|
||||||
$(info )
|
|
||||||
$(info ***************************************************************************)
|
|
||||||
$(info )
|
|
||||||
|
|
||||||
|
ifeq ($(shell uname -s),Darwin)
|
||||||
|
search_path += $(HOME)/Documents/Arduino/hardware/keyboardio/avr/libraries/Kaleidoscope
|
||||||
|
else
|
||||||
|
search_path += $(HOME)/Arduino/hardware/keyboardio/avr/libraries/Kaleidoscope
|
||||||
endif
|
endif
|
||||||
|
|
||||||
BOARD_HARDWARE_PATH = $(ARDUINO_INSTALLED_ENV)
|
sketch_makefile := etc/makefiles/sketch.mk
|
||||||
KALEIDOSCOPE_PLUGIN_MAKEFILE_DIR ?= build-tools/makefiles/
|
|
||||||
KALEIDOSCOPE_BUILDER_DIR ?= $(ARDUINO_INSTALLED_ENV)/libraries/Kaleidoscope/bin/
|
|
||||||
|
|
||||||
endif
|
$(foreach candidate, $(search_path), $(if $(wildcard $(candidate)/$(sketch_makefile)), $(eval ks_dir ?= $(candidate))))
|
||||||
|
|
||||||
BOARD_HARDWARE_PATH ?= $(SKETCHBOOK_DIR)/hardware
|
ifneq ($(ks_dir),)
|
||||||
KALEIDOSCOPE_PLUGIN_MAKEFILE_DIR ?= keyboardio/avr/build-tools/makefiles/
|
|
||||||
|
|
||||||
ifneq ("$(wildcard $(BOARD_HARDWARE_PATH)/$(KALEIDOSCOPE_PLUGIN_MAKEFILE_DIR)/rules.mk)","")
|
$(info Using Kaleidoscope from $(ks_dir))
|
||||||
|
|
||||||
include $(BOARD_HARDWARE_PATH)/$(KALEIDOSCOPE_PLUGIN_MAKEFILE_DIR)/rules.mk
|
export KALEIDOSCOPE_DIR := $(ks_dir)
|
||||||
|
include $(ks_dir)/$(sketch_makefile)
|
||||||
|
|
||||||
else
|
else
|
||||||
|
|
||||||
$(info ****************************************************************************)
|
$(info I can't find your Kaleidoscope installation.)
|
||||||
$(info I can't find an installed copy of Kaleidoscope's source code.)
|
|
||||||
$(info )
|
$(info )
|
||||||
$(info This usually means you're attempting to build a device's firmware from a git)
|
$(info I tried looking in:)
|
||||||
$(info checkout without having previously told Arduino where to find Kaleidoscope.)
|
|
||||||
$(info )
|
$(info )
|
||||||
$(info It is probably the case that you want to move or symlink your git checkout )
|
$(foreach candidate, $(search_path), $(info $(candidate)))
|
||||||
$(info of the Kaleidoscope bundle to the directory: )
|
|
||||||
$(info )
|
$(info )
|
||||||
$(info $(SKETCHBOOK_DIR)/hardware/keyboardio )
|
$(info The easiest way to fix this is to set the 'KALEIDOSCOPE_DIR' environment)
|
||||||
$(info ****************************************************************************)
|
$(info variable to the location of your Kaleidoscope directory.)
|
||||||
|
|
||||||
|
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
|
||||||
|
null-target:
|
||||||
|
$(info You should never see this message)
|
||||||
|
@:
|
||||||
|
@ -1,55 +1,48 @@
|
|||||||
# This stub makefile for a Kaleidoscope example pulls in all the targets
|
# This makefile for a Kaleidoscope sketch pulls in all the targets
|
||||||
# required to build the example
|
# required to build the example
|
||||||
|
|
||||||
UNAME_S := $(shell uname -s)
|
|
||||||
|
|
||||||
ifeq ($(UNAME_S),Darwin)
|
|
||||||
SKETCHBOOK_DIR ?= $(HOME)/Documents/Arduino
|
|
||||||
PACKAGE_DIR ?= $(HOME)/Library/Arduino15
|
ifneq ($(KALEIDOSCOPE_DIR),)
|
||||||
|
search_path += $(KALEIDOSCOPE_DIR)
|
||||||
|
endif
|
||||||
|
|
||||||
|
ifneq ($(ARDUINO_DIRECTORIES_USER),)
|
||||||
|
search_path += $(ARDUINO_DIRECTORIES_USER)/hardware/keyboardio/avr/libraries/Kaleidoscope
|
||||||
|
endif
|
||||||
|
|
||||||
|
ifeq ($(shell uname -s),Darwin)
|
||||||
|
search_path += $(HOME)/Documents/Arduino/hardware/keyboardio/avr/libraries/Kaleidoscope
|
||||||
else
|
else
|
||||||
SKETCHBOOK_DIR ?= $(HOME)/Arduino
|
search_path += $(HOME)/Arduino/hardware/keyboardio/avr/libraries/Kaleidoscope
|
||||||
PACKAGE_DIR ?= $(HOME)/.arduino15
|
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
sketch_makefile := etc/makefiles/sketch.mk
|
||||||
|
|
||||||
ARDUINO_INSTALLED_ENV=$(shell ls -dt $(PACKAGE_DIR)/packages/keyboardio/hardware/avr 2>/dev/null |head -n 1)
|
$(foreach candidate, $(search_path), $(if $(wildcard $(candidate)/$(sketch_makefile)), $(eval ks_dir ?= $(candidate))))
|
||||||
MANUALLY_INSTALLED_ENV=$(shell ls -dt $(SKETCHBOOK_DIR)/hardware/keyboardio/avr 2>/dev/null |head -n 1)
|
|
||||||
|
|
||||||
|
ifneq ($(ks_dir),)
|
||||||
|
|
||||||
|
$(info Using Kaleidoscope from $(ks_dir))
|
||||||
|
|
||||||
ifneq ("$(wildcard $(ARDUINO_INSTALLED_ENV)/boards.txt)","")
|
export KALEIDOSCOPE_DIR := $(ks_dir)
|
||||||
|
include $(ks_dir)/$(sketch_makefile)
|
||||||
|
|
||||||
ifneq ("$(wildcard $(MANUALLY_INSTALLED_ENV)/boards.txt)","")
|
else
|
||||||
|
|
||||||
$(info ***************************************************************************)
|
$(info I can't find your Kaleidoscope installation.)
|
||||||
$(info It appears that you have installed two copies of Kaleidoscope. One copy was)
|
|
||||||
$(info installed using Arduino's "Board Manager", while the other was installed by)
|
|
||||||
$(info hand, probably using "git".)
|
|
||||||
$(info )
|
|
||||||
$(info This will likely cause some trouble as you try to build keyboard firmware)
|
|
||||||
$(info using Kaleidoscope. You may want to remove either: )
|
|
||||||
$(info )
|
$(info )
|
||||||
$(info $(PACKAGE_DIR)/packages/keyboardio/ which was installed using Arduino)
|
$(info I tried looking in:)
|
||||||
$(info )
|
$(info )
|
||||||
$(info or)
|
$(foreach candidate, $(search_path), $(info $(candidate)))
|
||||||
$(info )
|
$(info )
|
||||||
$(info $(SKETCHBOOK_DIR)/hardware/keyboardio/ which was installed by hand.)
|
$(info The easiest way to fix this is to set the 'KALEIDOSCOPE_DIR' environment)
|
||||||
$(info )
|
$(info variable to the location of your Kaleidoscope directory.)
|
||||||
$(info ***************************************************************************)
|
|
||||||
$(info )
|
|
||||||
|
|
||||||
endif
|
|
||||||
|
|
||||||
BOARD_HARDWARE_PATH = $(ARDUINO_INSTALLED_ENV)
|
|
||||||
KALEIDOSCOPE_PLUGIN_MAKEFILE_DIR ?= build-tools/makefiles/
|
|
||||||
KALEIDOSCOPE_BUILDER_DIR ?= $(ARDUINO_INSTALLED_ENV)/libraries/Kaleidoscope/bin/
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
|
||||||
BOARD_HARDWARE_PATH ?= $(SKETCHBOOK_DIR)/hardware
|
null-target:
|
||||||
KALEIDOSCOPE_PLUGIN_MAKEFILE_DIR ?= keyboardio/avr/build-tools/makefiles/
|
$(info You should never see this message)
|
||||||
|
@:
|
||||||
include $(BOARD_HARDWARE_PATH)/$(KALEIDOSCOPE_PLUGIN_MAKEFILE_DIR)/rules.mk
|
|
||||||
|
@ -1,52 +1,48 @@
|
|||||||
# This stub makefile for a Kaleidoscope example pulls in all the targets
|
# This makefile for a Kaleidoscope sketch pulls in all the targets
|
||||||
# required to build the example
|
# required to build the example
|
||||||
|
|
||||||
UNAME_S := $(shell uname -s)
|
|
||||||
|
|
||||||
ifeq ($(UNAME_S),Darwin)
|
|
||||||
SKETCHBOOK_DIR ?= $(HOME)/Documents/Arduino
|
|
||||||
PACKAGE_DIR ?= $(HOME)/Library/Arduino15
|
ifneq ($(KALEIDOSCOPE_DIR),)
|
||||||
|
search_path += $(KALEIDOSCOPE_DIR)
|
||||||
|
endif
|
||||||
|
|
||||||
|
ifneq ($(ARDUINO_DIRECTORIES_USER),)
|
||||||
|
search_path += $(ARDUINO_DIRECTORIES_USER)/hardware/keyboardio/avr/libraries/Kaleidoscope
|
||||||
|
endif
|
||||||
|
|
||||||
|
ifeq ($(shell uname -s),Darwin)
|
||||||
|
search_path += $(HOME)/Documents/Arduino/hardware/keyboardio/avr/libraries/Kaleidoscope
|
||||||
else
|
else
|
||||||
SKETCHBOOK_DIR ?= $(HOME)/Arduino
|
search_path += $(HOME)/Arduino/hardware/keyboardio/avr/libraries/Kaleidoscope
|
||||||
PACKAGE_DIR ?= $(HOME)/.arduino15
|
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
sketch_makefile := etc/makefiles/sketch.mk
|
||||||
|
|
||||||
ARDUINO_INSTALLED_ENV=$(shell ls -dt $(PACKAGE_DIR)/packages/keyboardio/hardware/avr 2>/dev/null |head -n 1)
|
$(foreach candidate, $(search_path), $(if $(wildcard $(candidate)/$(sketch_makefile)), $(eval ks_dir ?= $(candidate))))
|
||||||
MANUALLY_INSTALLED_ENV=$(shell ls -dt $(SKETCHBOOK_DIR)/hardware/keyboardio/avr 2>/dev/null |head -n 1)
|
|
||||||
|
|
||||||
|
ifneq ($(ks_dir),)
|
||||||
|
|
||||||
|
$(info Using Kaleidoscope from $(ks_dir))
|
||||||
|
|
||||||
ifneq ("$(wildcard $(ARDUINO_INSTALLED_ENV)/boards.txt)","")
|
export KALEIDOSCOPE_DIR := $(ks_dir)
|
||||||
|
include $(ks_dir)/$(sketch_makefile)
|
||||||
|
|
||||||
ifneq ("$(wildcard $(MANUALLY_INSTALLED_ENV)/boards.txt)","")
|
else
|
||||||
|
|
||||||
$(info ***************************************************************************)
|
$(info I can't find your Kaleidoscope installation.)
|
||||||
$(info It appears that you have installed two copies of Kaleidoscope. One copy was)
|
|
||||||
$(info installed using Arduino's "Board Manager", while the other was installed by)
|
|
||||||
$(info hand, probably using "git".)
|
|
||||||
$(info )
|
$(info )
|
||||||
$(info This will likely cause some trouble as you try to build keyboard firmware)
|
$(info I tried looking in:)
|
||||||
$(info using Kaleidoscope. You may want to remove either: )
|
|
||||||
$(info )
|
$(info )
|
||||||
$(info $(PACKAGE_DIR)/packages/keyboardio/ which was installed using Arduino)
|
$(foreach candidate, $(search_path), $(info $(candidate)))
|
||||||
$(info )
|
$(info )
|
||||||
$(info or)
|
$(info The easiest way to fix this is to set the 'KALEIDOSCOPE_DIR' environment)
|
||||||
$(info )
|
$(info variable to the location of your Kaleidoscope directory.)
|
||||||
$(info $(SKETCHBOOK_DIR)/hardware/keyboardio/ which was installed by hand.)
|
|
||||||
$(info )
|
|
||||||
$(info ***************************************************************************)
|
|
||||||
$(info )
|
|
||||||
|
|
||||||
endif
|
|
||||||
|
|
||||||
BOARD_HARDWARE_PATH = $(ARDUINO_INSTALLED_ENV)
|
|
||||||
KALEIDOSCOPE_PLUGIN_MAKEFILE_DIR ?= build-tools/makefiles/
|
|
||||||
KALEIDOSCOPE_BUILDER_DIR ?= $(ARDUINO_INSTALLED_ENV)/libraries/Kaleidoscope/bin/
|
|
||||||
|
|
||||||
endif
|
endif
|
||||||
|
|
||||||
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
|
null-target:
|
||||||
|
$(info You should never see this message)
|
||||||
|
@:
|
||||||
|
@ -1,55 +1,48 @@
|
|||||||
# This stub makefile for a Kaleidoscope example pulls in all the targets
|
# This makefile for a Kaleidoscope sketch pulls in all the targets
|
||||||
# required to build the example
|
# required to build the example
|
||||||
|
|
||||||
UNAME_S := $(shell uname -s)
|
|
||||||
|
|
||||||
ifeq ($(UNAME_S),Darwin)
|
|
||||||
SKETCHBOOK_DIR ?= $(HOME)/Documents/Arduino
|
|
||||||
PACKAGE_DIR ?= $(HOME)/Library/Arduino15
|
ifneq ($(KALEIDOSCOPE_DIR),)
|
||||||
|
search_path += $(KALEIDOSCOPE_DIR)
|
||||||
|
endif
|
||||||
|
|
||||||
|
ifneq ($(ARDUINO_DIRECTORIES_USER),)
|
||||||
|
search_path += $(ARDUINO_DIRECTORIES_USER)/hardware/keyboardio/avr/libraries/Kaleidoscope
|
||||||
|
endif
|
||||||
|
|
||||||
|
ifeq ($(shell uname -s),Darwin)
|
||||||
|
search_path += $(HOME)/Documents/Arduino/hardware/keyboardio/avr/libraries/Kaleidoscope
|
||||||
else
|
else
|
||||||
SKETCHBOOK_DIR ?= $(HOME)/Arduino
|
search_path += $(HOME)/Arduino/hardware/keyboardio/avr/libraries/Kaleidoscope
|
||||||
PACKAGE_DIR ?= $(HOME)/.arduino15
|
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
sketch_makefile := etc/makefiles/sketch.mk
|
||||||
|
|
||||||
ARDUINO_INSTALLED_ENV=$(shell ls -dt $(PACKAGE_DIR)/packages/keyboardio/hardware/avr 2>/dev/null |head -n 1)
|
$(foreach candidate, $(search_path), $(if $(wildcard $(candidate)/$(sketch_makefile)), $(eval ks_dir ?= $(candidate))))
|
||||||
MANUALLY_INSTALLED_ENV=$(shell ls -dt $(SKETCHBOOK_DIR)/hardware/keyboardio/avr 2>/dev/null |head -n 1)
|
|
||||||
|
|
||||||
|
ifneq ($(ks_dir),)
|
||||||
|
|
||||||
|
$(info Using Kaleidoscope from $(ks_dir))
|
||||||
|
|
||||||
ifneq ("$(wildcard $(ARDUINO_INSTALLED_ENV)/boards.txt)","")
|
export KALEIDOSCOPE_DIR := $(ks_dir)
|
||||||
|
include $(ks_dir)/$(sketch_makefile)
|
||||||
|
|
||||||
ifneq ("$(wildcard $(MANUALLY_INSTALLED_ENV)/boards.txt)","")
|
else
|
||||||
|
|
||||||
$(info ***************************************************************************)
|
$(info I can't find your Kaleidoscope installation.)
|
||||||
$(info It appears that you have installed two copies of Kaleidoscope. One copy was)
|
|
||||||
$(info installed using Arduino's "Board Manager", while the other was installed by)
|
|
||||||
$(info hand, probably using "git".)
|
|
||||||
$(info )
|
|
||||||
$(info This will likely cause some trouble as you try to build keyboard firmware)
|
|
||||||
$(info using Kaleidoscope. You may want to remove either: )
|
|
||||||
$(info )
|
$(info )
|
||||||
$(info $(PACKAGE_DIR)/packages/keyboardio/ which was installed using Arduino)
|
$(info I tried looking in:)
|
||||||
$(info )
|
$(info )
|
||||||
$(info or)
|
$(foreach candidate, $(search_path), $(info $(candidate)))
|
||||||
$(info )
|
$(info )
|
||||||
$(info $(SKETCHBOOK_DIR)/hardware/keyboardio/ which was installed by hand.)
|
$(info The easiest way to fix this is to set the 'KALEIDOSCOPE_DIR' environment)
|
||||||
$(info )
|
$(info variable to the location of your Kaleidoscope directory.)
|
||||||
$(info ***************************************************************************)
|
|
||||||
$(info )
|
|
||||||
|
|
||||||
endif
|
|
||||||
|
|
||||||
BOARD_HARDWARE_PATH = $(ARDUINO_INSTALLED_ENV)
|
|
||||||
KALEIDOSCOPE_PLUGIN_MAKEFILE_DIR ?= build-tools/makefiles/
|
|
||||||
KALEIDOSCOPE_BUILDER_DIR ?= $(ARDUINO_INSTALLED_ENV)/libraries/Kaleidoscope/bin/
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
|
||||||
BOARD_HARDWARE_PATH ?= $(SKETCHBOOK_DIR)/hardware
|
null-target:
|
||||||
KALEIDOSCOPE_PLUGIN_MAKEFILE_DIR ?= keyboardio/avr/build-tools/makefiles/
|
$(info You should never see this message)
|
||||||
|
@:
|
||||||
include $(BOARD_HARDWARE_PATH)/$(KALEIDOSCOPE_PLUGIN_MAKEFILE_DIR)/rules.mk
|
|
||||||
|
@ -1,55 +1,48 @@
|
|||||||
# This stub makefile for a Kaleidoscope example pulls in all the targets
|
# This makefile for a Kaleidoscope sketch pulls in all the targets
|
||||||
# required to build the example
|
# required to build the example
|
||||||
|
|
||||||
UNAME_S := $(shell uname -s)
|
|
||||||
|
|
||||||
ifeq ($(UNAME_S),Darwin)
|
|
||||||
SKETCHBOOK_DIR ?= $(HOME)/Documents/Arduino
|
|
||||||
PACKAGE_DIR ?= $(HOME)/Library/Arduino15
|
ifneq ($(KALEIDOSCOPE_DIR),)
|
||||||
|
search_path += $(KALEIDOSCOPE_DIR)
|
||||||
|
endif
|
||||||
|
|
||||||
|
ifneq ($(ARDUINO_DIRECTORIES_USER),)
|
||||||
|
search_path += $(ARDUINO_DIRECTORIES_USER)/hardware/keyboardio/avr/libraries/Kaleidoscope
|
||||||
|
endif
|
||||||
|
|
||||||
|
ifeq ($(shell uname -s),Darwin)
|
||||||
|
search_path += $(HOME)/Documents/Arduino/hardware/keyboardio/avr/libraries/Kaleidoscope
|
||||||
else
|
else
|
||||||
SKETCHBOOK_DIR ?= $(HOME)/Arduino
|
search_path += $(HOME)/Arduino/hardware/keyboardio/avr/libraries/Kaleidoscope
|
||||||
PACKAGE_DIR ?= $(HOME)/.arduino15
|
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
sketch_makefile := etc/makefiles/sketch.mk
|
||||||
|
|
||||||
ARDUINO_INSTALLED_ENV=$(shell ls -dt $(PACKAGE_DIR)/packages/keyboardio/hardware/avr 2>/dev/null |head -n 1)
|
$(foreach candidate, $(search_path), $(if $(wildcard $(candidate)/$(sketch_makefile)), $(eval ks_dir ?= $(candidate))))
|
||||||
MANUALLY_INSTALLED_ENV=$(shell ls -dt $(SKETCHBOOK_DIR)/hardware/keyboardio/avr 2>/dev/null |head -n 1)
|
|
||||||
|
|
||||||
|
ifneq ($(ks_dir),)
|
||||||
|
|
||||||
|
$(info Using Kaleidoscope from $(ks_dir))
|
||||||
|
|
||||||
ifneq ("$(wildcard $(ARDUINO_INSTALLED_ENV)/boards.txt)","")
|
export KALEIDOSCOPE_DIR := $(ks_dir)
|
||||||
|
include $(ks_dir)/$(sketch_makefile)
|
||||||
|
|
||||||
ifneq ("$(wildcard $(MANUALLY_INSTALLED_ENV)/boards.txt)","")
|
else
|
||||||
|
|
||||||
$(info ***************************************************************************)
|
$(info I can't find your Kaleidoscope installation.)
|
||||||
$(info It appears that you have installed two copies of Kaleidoscope. One copy was)
|
|
||||||
$(info installed using Arduino's "Board Manager", while the other was installed by)
|
|
||||||
$(info hand, probably using "git".)
|
|
||||||
$(info )
|
|
||||||
$(info This will likely cause some trouble as you try to build keyboard firmware)
|
|
||||||
$(info using Kaleidoscope. You may want to remove either: )
|
|
||||||
$(info )
|
$(info )
|
||||||
$(info $(PACKAGE_DIR)/packages/keyboardio/ which was installed using Arduino)
|
$(info I tried looking in:)
|
||||||
$(info )
|
$(info )
|
||||||
$(info or)
|
$(foreach candidate, $(search_path), $(info $(candidate)))
|
||||||
$(info )
|
$(info )
|
||||||
$(info $(SKETCHBOOK_DIR)/hardware/keyboardio/ which was installed by hand.)
|
$(info The easiest way to fix this is to set the 'KALEIDOSCOPE_DIR' environment)
|
||||||
$(info )
|
$(info variable to the location of your Kaleidoscope directory.)
|
||||||
$(info ***************************************************************************)
|
|
||||||
$(info )
|
|
||||||
|
|
||||||
endif
|
|
||||||
|
|
||||||
BOARD_HARDWARE_PATH = $(ARDUINO_INSTALLED_ENV)
|
|
||||||
KALEIDOSCOPE_PLUGIN_MAKEFILE_DIR ?= build-tools/makefiles/
|
|
||||||
KALEIDOSCOPE_BUILDER_DIR ?= $(ARDUINO_INSTALLED_ENV)/libraries/Kaleidoscope/bin/
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
|
||||||
BOARD_HARDWARE_PATH ?= $(SKETCHBOOK_DIR)/hardware
|
null-target:
|
||||||
KALEIDOSCOPE_PLUGIN_MAKEFILE_DIR ?= keyboardio/avr/build-tools/makefiles/
|
$(info You should never see this message)
|
||||||
|
@:
|
||||||
include $(BOARD_HARDWARE_PATH)/$(KALEIDOSCOPE_PLUGIN_MAKEFILE_DIR)/rules.mk
|
|
||||||
|
@ -1,55 +1,48 @@
|
|||||||
# This stub makefile for a Kaleidoscope example pulls in all the targets
|
# This makefile for a Kaleidoscope sketch pulls in all the targets
|
||||||
# required to build the example
|
# required to build the example
|
||||||
|
|
||||||
UNAME_S := $(shell uname -s)
|
|
||||||
|
|
||||||
ifeq ($(UNAME_S),Darwin)
|
|
||||||
SKETCHBOOK_DIR ?= $(HOME)/Documents/Arduino
|
|
||||||
PACKAGE_DIR ?= $(HOME)/Library/Arduino15
|
ifneq ($(KALEIDOSCOPE_DIR),)
|
||||||
|
search_path += $(KALEIDOSCOPE_DIR)
|
||||||
|
endif
|
||||||
|
|
||||||
|
ifneq ($(ARDUINO_DIRECTORIES_USER),)
|
||||||
|
search_path += $(ARDUINO_DIRECTORIES_USER)/hardware/keyboardio/avr/libraries/Kaleidoscope
|
||||||
|
endif
|
||||||
|
|
||||||
|
ifeq ($(shell uname -s),Darwin)
|
||||||
|
search_path += $(HOME)/Documents/Arduino/hardware/keyboardio/avr/libraries/Kaleidoscope
|
||||||
else
|
else
|
||||||
SKETCHBOOK_DIR ?= $(HOME)/Arduino
|
search_path += $(HOME)/Arduino/hardware/keyboardio/avr/libraries/Kaleidoscope
|
||||||
PACKAGE_DIR ?= $(HOME)/.arduino15
|
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
sketch_makefile := etc/makefiles/sketch.mk
|
||||||
|
|
||||||
ARDUINO_INSTALLED_ENV=$(shell ls -dt $(PACKAGE_DIR)/packages/keyboardio/hardware/avr 2>/dev/null |head -n 1)
|
$(foreach candidate, $(search_path), $(if $(wildcard $(candidate)/$(sketch_makefile)), $(eval ks_dir ?= $(candidate))))
|
||||||
MANUALLY_INSTALLED_ENV=$(shell ls -dt $(SKETCHBOOK_DIR)/hardware/keyboardio/avr 2>/dev/null |head -n 1)
|
|
||||||
|
|
||||||
|
ifneq ($(ks_dir),)
|
||||||
|
|
||||||
|
$(info Using Kaleidoscope from $(ks_dir))
|
||||||
|
|
||||||
ifneq ("$(wildcard $(ARDUINO_INSTALLED_ENV)/boards.txt)","")
|
export KALEIDOSCOPE_DIR := $(ks_dir)
|
||||||
|
include $(ks_dir)/$(sketch_makefile)
|
||||||
|
|
||||||
ifneq ("$(wildcard $(MANUALLY_INSTALLED_ENV)/boards.txt)","")
|
else
|
||||||
|
|
||||||
$(info ***************************************************************************)
|
$(info I can't find your Kaleidoscope installation.)
|
||||||
$(info It appears that you have installed two copies of Kaleidoscope. One copy was)
|
|
||||||
$(info installed using Arduino's "Board Manager", while the other was installed by)
|
|
||||||
$(info hand, probably using "git".)
|
|
||||||
$(info )
|
|
||||||
$(info This will likely cause some trouble as you try to build keyboard firmware)
|
|
||||||
$(info using Kaleidoscope. You may want to remove either: )
|
|
||||||
$(info )
|
$(info )
|
||||||
$(info $(PACKAGE_DIR)/packages/keyboardio/ which was installed using Arduino)
|
$(info I tried looking in:)
|
||||||
$(info )
|
$(info )
|
||||||
$(info or)
|
$(foreach candidate, $(search_path), $(info $(candidate)))
|
||||||
$(info )
|
$(info )
|
||||||
$(info $(SKETCHBOOK_DIR)/hardware/keyboardio/ which was installed by hand.)
|
$(info The easiest way to fix this is to set the 'KALEIDOSCOPE_DIR' environment)
|
||||||
$(info )
|
$(info variable to the location of your Kaleidoscope directory.)
|
||||||
$(info ***************************************************************************)
|
|
||||||
$(info )
|
|
||||||
|
|
||||||
endif
|
|
||||||
|
|
||||||
BOARD_HARDWARE_PATH = $(ARDUINO_INSTALLED_ENV)
|
|
||||||
KALEIDOSCOPE_PLUGIN_MAKEFILE_DIR ?= build-tools/makefiles/
|
|
||||||
KALEIDOSCOPE_BUILDER_DIR ?= $(ARDUINO_INSTALLED_ENV)/libraries/Kaleidoscope/bin/
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
|
||||||
BOARD_HARDWARE_PATH ?= $(SKETCHBOOK_DIR)/hardware
|
null-target:
|
||||||
KALEIDOSCOPE_PLUGIN_MAKEFILE_DIR ?= keyboardio/avr/build-tools/makefiles/
|
$(info You should never see this message)
|
||||||
|
@:
|
||||||
include $(BOARD_HARDWARE_PATH)/$(KALEIDOSCOPE_PLUGIN_MAKEFILE_DIR)/rules.mk
|
|
||||||
|
@ -1,55 +1,48 @@
|
|||||||
# This stub makefile for a Kaleidoscope example pulls in all the targets
|
# This makefile for a Kaleidoscope sketch pulls in all the targets
|
||||||
# required to build the example
|
# required to build the example
|
||||||
|
|
||||||
UNAME_S := $(shell uname -s)
|
|
||||||
|
|
||||||
ifeq ($(UNAME_S),Darwin)
|
|
||||||
SKETCHBOOK_DIR ?= $(HOME)/Documents/Arduino
|
|
||||||
PACKAGE_DIR ?= $(HOME)/Library/Arduino15
|
ifneq ($(KALEIDOSCOPE_DIR),)
|
||||||
|
search_path += $(KALEIDOSCOPE_DIR)
|
||||||
|
endif
|
||||||
|
|
||||||
|
ifneq ($(ARDUINO_DIRECTORIES_USER),)
|
||||||
|
search_path += $(ARDUINO_DIRECTORIES_USER)/hardware/keyboardio/avr/libraries/Kaleidoscope
|
||||||
|
endif
|
||||||
|
|
||||||
|
ifeq ($(shell uname -s),Darwin)
|
||||||
|
search_path += $(HOME)/Documents/Arduino/hardware/keyboardio/avr/libraries/Kaleidoscope
|
||||||
else
|
else
|
||||||
SKETCHBOOK_DIR ?= $(HOME)/Arduino
|
search_path += $(HOME)/Arduino/hardware/keyboardio/avr/libraries/Kaleidoscope
|
||||||
PACKAGE_DIR ?= $(HOME)/.arduino15
|
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
sketch_makefile := etc/makefiles/sketch.mk
|
||||||
|
|
||||||
ARDUINO_INSTALLED_ENV=$(shell ls -dt $(PACKAGE_DIR)/packages/keyboardio/hardware/avr 2>/dev/null |head -n 1)
|
$(foreach candidate, $(search_path), $(if $(wildcard $(candidate)/$(sketch_makefile)), $(eval ks_dir ?= $(candidate))))
|
||||||
MANUALLY_INSTALLED_ENV=$(shell ls -dt $(SKETCHBOOK_DIR)/hardware/keyboardio/avr 2>/dev/null |head -n 1)
|
|
||||||
|
|
||||||
|
ifneq ($(ks_dir),)
|
||||||
|
|
||||||
|
$(info Using Kaleidoscope from $(ks_dir))
|
||||||
|
|
||||||
ifneq ("$(wildcard $(ARDUINO_INSTALLED_ENV)/boards.txt)","")
|
export KALEIDOSCOPE_DIR := $(ks_dir)
|
||||||
|
include $(ks_dir)/$(sketch_makefile)
|
||||||
|
|
||||||
ifneq ("$(wildcard $(MANUALLY_INSTALLED_ENV)/boards.txt)","")
|
else
|
||||||
|
|
||||||
$(info ***************************************************************************)
|
$(info I can't find your Kaleidoscope installation.)
|
||||||
$(info It appears that you have installed two copies of Kaleidoscope. One copy was)
|
|
||||||
$(info installed using Arduino's "Board Manager", while the other was installed by)
|
|
||||||
$(info hand, probably using "git".)
|
|
||||||
$(info )
|
|
||||||
$(info This will likely cause some trouble as you try to build keyboard firmware)
|
|
||||||
$(info using Kaleidoscope. You may want to remove either: )
|
|
||||||
$(info )
|
$(info )
|
||||||
$(info $(PACKAGE_DIR)/packages/keyboardio/ which was installed using Arduino)
|
$(info I tried looking in:)
|
||||||
$(info )
|
$(info )
|
||||||
$(info or)
|
$(foreach candidate, $(search_path), $(info $(candidate)))
|
||||||
$(info )
|
$(info )
|
||||||
$(info $(SKETCHBOOK_DIR)/hardware/keyboardio/ which was installed by hand.)
|
$(info The easiest way to fix this is to set the 'KALEIDOSCOPE_DIR' environment)
|
||||||
$(info )
|
$(info variable to the location of your Kaleidoscope directory.)
|
||||||
$(info ***************************************************************************)
|
|
||||||
$(info )
|
|
||||||
|
|
||||||
endif
|
|
||||||
|
|
||||||
BOARD_HARDWARE_PATH = $(ARDUINO_INSTALLED_ENV)
|
|
||||||
KALEIDOSCOPE_PLUGIN_MAKEFILE_DIR ?= build-tools/makefiles/
|
|
||||||
KALEIDOSCOPE_BUILDER_DIR ?= $(ARDUINO_INSTALLED_ENV)/libraries/Kaleidoscope/bin/
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
|
||||||
BOARD_HARDWARE_PATH ?= $(SKETCHBOOK_DIR)/hardware
|
null-target:
|
||||||
KALEIDOSCOPE_PLUGIN_MAKEFILE_DIR ?= keyboardio/avr/build-tools/makefiles/
|
$(info You should never see this message)
|
||||||
|
@:
|
||||||
include $(BOARD_HARDWARE_PATH)/$(KALEIDOSCOPE_PLUGIN_MAKEFILE_DIR)/rules.mk
|
|
||||||
|
@ -1,73 +1,48 @@
|
|||||||
# This stub makefile for a Kaleidoscope plugin pulls in
|
# This makefile for a Kaleidoscope sketch pulls in all the targets
|
||||||
# all targets from the Kaleidoscope-Plugin library
|
# required to build the example
|
||||||
|
|
||||||
UNAME_S := $(shell uname -s)
|
|
||||||
|
|
||||||
ifeq ($(UNAME_S),Darwin)
|
|
||||||
SKETCHBOOK_DIR ?= $(HOME)/Documents/Arduino
|
|
||||||
PACKAGE_DIR ?= $(HOME)/Library/Arduino15
|
|
||||||
else
|
|
||||||
SKETCHBOOK_DIR ?= $(HOME)/Arduino
|
|
||||||
PACKAGE_DIR ?= $(HOME)/.arduino15
|
|
||||||
endif
|
|
||||||
|
|
||||||
|
|
||||||
ARDUINO_INSTALLED_ENV=$(shell ls -dt $(PACKAGE_DIR)/packages/keyboardio/hardware/avr 2>/dev/null |head -n 1)
|
|
||||||
MANUALLY_INSTALLED_ENV=$(shell ls -dt $(SKETCHBOOK_DIR)/hardware/keyboardio/avr 2>/dev/null |head -n 1)
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
ifneq ("$(wildcard $(ARDUINO_INSTALLED_ENV)/boards.txt)","")
|
|
||||||
|
|
||||||
ifneq ("$(wildcard $(MANUALLY_INSTALLED_ENV)/boards.txt)","")
|
ifneq ($(KALEIDOSCOPE_DIR),)
|
||||||
|
search_path += $(KALEIDOSCOPE_DIR)
|
||||||
$(info ***************************************************************************)
|
endif
|
||||||
$(info It appears that you have installed two copies of Kaleidoscope. One copy was)
|
|
||||||
$(info installed using Arduino's "Board Manager", while the other was installed by)
|
|
||||||
$(info hand, probably using "git".)
|
|
||||||
$(info )
|
|
||||||
$(info This will likely cause some trouble as you try to build keyboard firmware)
|
|
||||||
$(info using Kaleidoscope. You may want to remove either: )
|
|
||||||
$(info )
|
|
||||||
$(info $(PACKAGE_DIR)/packages/keyboardio/ which was installed using Arduino)
|
|
||||||
$(info )
|
|
||||||
$(info or)
|
|
||||||
$(info )
|
|
||||||
$(info $(SKETCHBOOK_DIR)/hardware/keyboardio/ which was installed by hand.)
|
|
||||||
$(info )
|
|
||||||
$(info ***************************************************************************)
|
|
||||||
$(info )
|
|
||||||
|
|
||||||
|
ifneq ($(ARDUINO_DIRECTORIES_USER),)
|
||||||
|
search_path += $(ARDUINO_DIRECTORIES_USER)/hardware/keyboardio/avr/libraries/Kaleidoscope
|
||||||
endif
|
endif
|
||||||
|
|
||||||
BOARD_HARDWARE_PATH = $(ARDUINO_INSTALLED_ENV)
|
ifeq ($(shell uname -s),Darwin)
|
||||||
KALEIDOSCOPE_PLUGIN_MAKEFILE_DIR ?= build-tools/makefiles/
|
search_path += $(HOME)/Documents/Arduino/hardware/keyboardio/avr/libraries/Kaleidoscope
|
||||||
KALEIDOSCOPE_BUILDER_DIR ?= $(ARDUINO_INSTALLED_ENV)/libraries/Kaleidoscope/bin/
|
else
|
||||||
|
search_path += $(HOME)/Arduino/hardware/keyboardio/avr/libraries/Kaleidoscope
|
||||||
|
endif
|
||||||
|
|
||||||
|
sketch_makefile := etc/makefiles/sketch.mk
|
||||||
|
|
||||||
|
$(foreach candidate, $(search_path), $(if $(wildcard $(candidate)/$(sketch_makefile)), $(eval ks_dir ?= $(candidate))))
|
||||||
|
|
||||||
endif
|
ifneq ($(ks_dir),)
|
||||||
|
|
||||||
|
$(info Using Kaleidoscope from $(ks_dir))
|
||||||
|
|
||||||
BOARD_HARDWARE_PATH ?= $(SKETCHBOOK_DIR)/hardware
|
export KALEIDOSCOPE_DIR := $(ks_dir)
|
||||||
KALEIDOSCOPE_PLUGIN_MAKEFILE_DIR ?= keyboardio/build-tools/makefiles/
|
include $(ks_dir)/$(sketch_makefile)
|
||||||
|
|
||||||
# If Kaleidoscope's Arduino libraries cannot be found, e.g. because
|
else
|
||||||
# they reside outside of SKETCHBOOK_DIR, we fall back to assuming that
|
|
||||||
# the hardware directory can be determined in relation to the position of
|
|
||||||
# this Makefile.
|
|
||||||
ifeq ("$(wildcard $(BOARD_HARDWARE_PATH)/keyboardio/build-tools/makefiles/rules.mk)","")
|
|
||||||
# Determine the path of this Makefile
|
|
||||||
MKFILE_DIR:=$(shell dirname $(realpath $(lastword $(MAKEFILE_LIST))))
|
|
||||||
BOARD_HARDWARE_PATH = $(MKFILE_DIR)/../../../../../..
|
|
||||||
endif
|
|
||||||
|
|
||||||
ifeq ("$(wildcard $(BOARD_HARDWARE_PATH)/keyboardio/build-tools/makefiles/rules.mk)","")
|
$(info I can't find your Kaleidoscope installation.)
|
||||||
$(info ***************************************************************************)
|
$(info )
|
||||||
$(info Unable to autodetect a proper BOARD_HARDWARE_PATH. Please define it manually.)
|
$(info I tried looking in:)
|
||||||
$(info ***************************************************************************)
|
|
||||||
$(info )
|
$(info )
|
||||||
|
$(foreach candidate, $(search_path), $(info $(candidate)))
|
||||||
|
$(info )
|
||||||
|
$(info The easiest way to fix this is to set the 'KALEIDOSCOPE_DIR' environment)
|
||||||
|
$(info variable to the location of your Kaleidoscope directory.)
|
||||||
|
|
||||||
endif
|
endif
|
||||||
|
|
||||||
include $(BOARD_HARDWARE_PATH)/$(KALEIDOSCOPE_PLUGIN_MAKEFILE_DIR)/rules.mk
|
|
||||||
|
|
||||||
|
null-target:
|
||||||
|
$(info You should never see this message)
|
||||||
|
@:
|
||||||
|
Loading…
Reference in new issue