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.
14 lines
408 B
14 lines
408 B
7 years ago
|
# 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)
|
||
|
|
||
|
ifeq ($(UNAME_S),Darwin)
|
||
|
BOARD_HARDWARE_PATH ?= $(HOME)/Documents/Arduino/hardware
|
||
|
else
|
||
|
BOARD_HARDWARE_PATH ?= $(HOME)/Arduino/hardware
|
||
|
endif
|
||
|
|
||
|
include $(BOARD_HARDWARE_PATH)/$(MAKEFILE_PREFIX)/rules.mk
|