diff options
author | Jesse Vincent <jesse@keyboard.io> | 2017-08-14 15:53:08 -0700 |
---|---|---|
committer | Jesse Vincent <jesse@keyboard.io> | 2017-08-14 15:53:08 -0700 |
commit | 243957c4696ed9b7fec36b9fb195672389962245 (patch) | |
tree | 7a4050528cc89fc5fd7a53b14206feb8e9f1d561 | |
parent | ebd039299a4799afde0a7204eecdaca8a9012487 (diff) | |
download | Model01-Firmware-243957c4696ed9b7fec36b9fb195672389962245.tar.gz Model01-Firmware-243957c4696ed9b7fec36b9fb195672389962245.zip |
slight makefile tweaks
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,7 +1,6 @@ # 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) @@ -11,4 +10,5 @@ SKETCHBOOK_DIR ?= $(HOME)/Arduino endif BOARD_HARDWARE_PATH ?= $(SKETCHBOOK_DIR)/hardware -include $(BOARD_HARDWARE_PATH)/$(MAKEFILE_PREFIX)/rules.mk +KALEIDOSCOPE_PLUGIN_MAKEFILE_DIR ?= keyboardio/avr/libraries/Kaleidoscope-Plugin/build +include $(BOARD_HARDWARE_PATH)/$(KALEIDOSCOPE_PLUGIN_MAKEFILE_DIR)/rules.mk |