aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: 7464e7f6e495f17c1ee7a43e71cf502c8f2097da (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
# 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 
PACKAGE_DIR ?= $(HOME)/Library/Arduino15 
else
SKETCHBOOK_DIR ?= $(HOME)/Arduino 
PACKAGE_DIR ?= $(HOME)/.arduino15 
endif
 
 
ARDUINO_INSTALLED_ENV=$(shell ls -dt $(PACKAGE_DIR)/packages/keyboardio/hardware/avr 2>/dev/null |head -n 1) 
MANUALLY_INSTALLED_ENV=$(shell ls -dt $(SKETCHBOOK_DIR)/hardware/keyboardio/avr 2>/dev/null |head -n 1) 
 
 
 
ifneq ("$(wildcard $(ARDUINO_INSTALLED_ENV)/boards.txt)","")
 
ifneq ("$(wildcard $(MANUALLY_INSTALLED_ENV)/boards.txt)","")
 
$(info ***************************************************************************)
$(info It appears that you have installed two copies of Kaleidoscope. One copy was)
$(info installed using Arduino's "Board Manager", while the other was installed by)
$(info hand, probably using "git".)
$(info )
$(info This will likely cause some trouble as you try to build keyboard firmware)
$(info using Kaleidoscope. You may want to remove either: )
$(info )
$(info $(PACKAGE_DIR)/packages/keyboardio/ which was installed using Arduino)
$(info )
$(info or)
$(info )
$(info $(SKETCHBOOK_DIR)/hardware/keyboardio/ which was installed by hand.)
$(info )
$(info ***************************************************************************)
$(info )
endif
 
BOARD_HARDWARE_PATH = $(ARDUINO_INSTALLED_ENV) 
KALEIDOSCOPE_PLUGIN_MAKEFILE_DIR ?= build-tools/makefiles/ 
KALEIDOSCOPE_BUILDER_DIR ?= $(ARDUINO_INSTALLED_ENV)/libraries/Kaleidoscope/bin/ 
 
 
 
endif
 
 
BOARD_HARDWARE_PATH ?= $(SKETCHBOOK_DIR)/hardware 
KALEIDOSCOPE_PLUGIN_MAKEFILE_DIR ?= keyboardio/avr/build-tools/makefiles/ 
 
export LOCAL_CFLAGS= -DKALEIDOSCOPE_HIDADAPTOR_DISABLE_ABSOLUTE_MOUSE=1 -DKALEIDOSCOPE_HIDADAPTOR_DISABLE_MOUSE=1 
 
include $(BOARD_HARDWARE_PATH)/$(KALEIDOSCOPE_PLUGIN_MAKEFILE_DIR)/rules.mk