Change TOP_DIR to TMK_DIR in makefiles

This commit is contained in:
tmk
2015-04-09 16:20:42 +09:00
parent 08ec8bbe5d
commit b4e2d325f3
58 changed files with 295 additions and 295 deletions
+5 -5
View File
@@ -58,17 +58,17 @@ OPT_DEFS += -DARDUINO=101
#
# Search Path
#
VPATH += $(TOP_DIR)/$(USB_HID_DIR)
VPATH += $(TOP_DIR)/$(USB_HOST_SHIELD_DIR)
VPATH += $(TMK_DIR)/$(USB_HID_DIR)
VPATH += $(TMK_DIR)/$(USB_HOST_SHIELD_DIR)
# for #include "Arduino.h"
VPATH += $(TOP_DIR)/$(ARDUINO_CORES_DIR)
VPATH += $(TMK_DIR)/$(ARDUINO_CORES_DIR)
# for #include "pins_arduino.h"
VPATH += $(TOP_DIR)/$(ARDUINO_DIR)/variants/leonardo
VPATH += $(TMK_DIR)/$(ARDUINO_DIR)/variants/leonardo
# ad hoc workaround for compile problem on Windows:
# Windows doesn't know difference between common/print.h and arduino/Print.h.
# On Linux no problem.
# Change file name common/print.h to console.h ?
VPATH := $(TOP_DIR)/common $(VPATH)
VPATH := $(TMK_DIR)/common $(VPATH)