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.
15 lines
455 B
15 lines
455 B
# This stub makefile for a Kaleidoscope plugin pulls in
|
|
# all targets from the Kaleidoscope-Plugin library
|
|
|
|
UNAME_S := $(shell uname -s)
|
|
|
|
ifeq ($(UNAME_S),Darwin)
|
|
SKETCHBOOK_DIR ?= $(HOME)/Documents/Arduino/
|
|
else
|
|
SKETCHBOOK_DIR ?= $(HOME)/Arduino
|
|
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
|