summaryrefslogtreecommitdiffstats
path: root/protocol/usb_hid.mk
diff options
context:
space:
mode:
authortmk <hasu@tmk-kbd.com>2015-04-09 09:20:42 +0200
committertmk <hasu@tmk-kbd.com>2015-04-09 09:20:42 +0200
commitb4e2d325f355a4d083106476393775e75e11f284 (patch)
tree8af0a44ec2f1876ed440b404f1520097db9d5dcc /protocol/usb_hid.mk
parent08ec8bbe5d39f224869a68acd6fc0c8265e18226 (diff)
downloadqmk_firmware-b4e2d325f355a4d083106476393775e75e11f284.tar.gz
qmk_firmware-b4e2d325f355a4d083106476393775e75e11f284.tar.xz
Change TOP_DIR to TMK_DIR in makefiles
Diffstat (limited to 'protocol/usb_hid.mk')
-rw-r--r--protocol/usb_hid.mk10
1 files changed, 5 insertions, 5 deletions
diff --git a/protocol/usb_hid.mk b/protocol/usb_hid.mk
index 8fda76c2e..1f79bda3b 100644
--- a/protocol/usb_hid.mk
+++ b/protocol/usb_hid.mk
@@ -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)