diff options
author | tmk <hasu@tmk-kbd.com> | 2015-04-09 16:20:42 +0900 |
---|---|---|
committer | tmk <hasu@tmk-kbd.com> | 2015-04-09 16:20:42 +0900 |
commit | b4e2d325f355a4d083106476393775e75e11f284 (patch) | |
tree | 8af0a44ec2f1876ed440b404f1520097db9d5dcc /protocol/usb_hid.mk | |
parent | 08ec8bbe5d39f224869a68acd6fc0c8265e18226 (diff) |
Change TOP_DIR to TMK_DIR in makefiles
Diffstat (limited to 'protocol/usb_hid.mk')
-rw-r--r-- | protocol/usb_hid.mk | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/protocol/usb_hid.mk b/protocol/usb_hid.mk index 8fda76c2e5..1f79bda3bd 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) |