You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
542 B
20 lines
542 B
4 years ago
|
# This stub makefile for a Kaleidoscope example pulls in all the targets
|
||
|
# required to build the example
|
||
|
|
||
|
UNAME_S := $(shell uname -s)
|
||
|
|
||
|
ifeq ($(UNAME_S),Darwin)
|
||
|
SKETCHBOOK_DIR ?= $(HOME)/Documents/Arduino
|
||
|
else
|
||
|
SKETCHBOOK_DIR ?= $(HOME)/Arduino
|
||
|
endif
|
||
|
|
||
|
|
||
|
ifneq ("$(wildcard $(SKETCHBOOK_DIR)/hardware/keyboardio/avr/boards.txt)","")
|
||
|
ARDUINO_DIRECTORIES_USER ?= $(SKETCHBOOK_DIR)
|
||
|
endif
|
||
|
|
||
|
KALEIDOSCOPE_ETC_DIR ?= $(ARDUINO_DIRECTORIES_USER)/hardware/keyboardio/avr/libraries/Kaleidoscope/etc/
|
||
|
|
||
|
include $(KALEIDOSCOPE_ETC_DIR)/sketch-arduino-cli.mk
|