diff options
author | Jesse Vincent <jesse@keyboard.io> | 2017-08-14 15:53:08 -0700 |
---|---|---|
committer | Jesse Vincent <jesse@keyboard.io> | 2017-08-16 13:26:57 -0700 |
commit | 2b740c403e754f0889e234fda1e944dc6fde7055 (patch) | |
tree | 7a4050528cc89fc5fd7a53b14206feb8e9f1d561 /Makefile | |
parent | 487e97accda560f5e3659ec43029bd7d380a1d57 (diff) | |
download | model01-firmware-2b740c403e754f0889e234fda1e944dc6fde7055.tar.gz model01-firmware-2b740c403e754f0889e234fda1e944dc6fde7055.tar.bz2 model01-firmware-2b740c403e754f0889e234fda1e944dc6fde7055.zip |
slight makefile tweaks
Diffstat (limited to 'Makefile')
-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 |