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.
17 lines
513 B
17 lines
513 B
# This stub makefile for a Kaleidoscope plugin pulls in
|
|
# all targets from the Kaleidoscope-Plugin library
|
|
|
|
MAKEFILE_PREFIX=keyboardio/avr/libraries/Kaleidoscope-Plugin/build
|
|
UNAME_S := $(shell uname -s)
|
|
|
|
ifneq ($(wildcard $(shell pwd)/hardware/$(MAKEFILE_PREFIX)), "" )
|
|
BOARD_HARDWARE_PATH=$(shell pwd)/hardware
|
|
endif
|
|
|
|
BOARD_HARDWARE_PATH ?= $(HOME)/Arduino/hardware
|
|
ifeq ($(UNAME_S),Darwin)
|
|
BOARD_HARDWARE_PATH ?= $(HOME)/Library/Arduino/hardware
|
|
endif
|
|
|
|
include $(BOARD_HARDWARE_PATH)/$(MAKEFILE_PREFIX)/*.mk
|