aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--common.mk4
-rw-r--r--converter/adb_usb/Makefile12
-rw-r--r--converter/adb_usb/Makefile.pjrc12
-rw-r--r--converter/ascii_usb/Makefile12
-rw-r--r--converter/ibm4704_usb/Makefile12
-rw-r--r--converter/m0110_usb/Makefile12
-rw-r--r--converter/m0110_usb/Makefile.pjrc12
-rw-r--r--converter/m0110_usb/Makefile.teensy12
-rw-r--r--converter/news_usb/Makefile.pjrc12
-rw-r--r--converter/next_usb/Makefile12
-rw-r--r--converter/next_usb/Makefile.pjrc12
-rw-r--r--converter/pc98_usb/Makefile12
-rw-r--r--converter/ps2_usb/Makefile12
-rw-r--r--converter/ps2_usb/Makefile.pjrc12
-rw-r--r--converter/ps2_usb/Makefile.tmk_rev112
-rw-r--r--converter/ps2_usb/Makefile.tmk_rev212
-rw-r--r--converter/ps2_usb/Makefile.vusb12
-rw-r--r--converter/serialmouse_usb/Makefile12
-rw-r--r--converter/sun_usb/Makefile12
-rw-r--r--converter/terminal_bluefruit/Makefile14
-rw-r--r--converter/terminal_usb/Makefile12
-rw-r--r--converter/usb_usb/Makefile12
-rw-r--r--converter/x68k_usb/Makefile12
-rw-r--r--keyboard/IIgs/Makefile10
-rw-r--r--keyboard/alps64/Makefile10
-rw-r--r--keyboard/gh60/Makefile10
-rw-r--r--keyboard/gh60/Makefile.pjrc10
-rw-r--r--keyboard/ghost_squid/Makefile.lufa10
-rw-r--r--keyboard/hbkb/Makefile.lufa10
-rw-r--r--keyboard/hhkb/Makefile10
-rw-r--r--keyboard/hhkb/Makefile.pjrc10
-rw-r--r--keyboard/hhkb/Makefile.rn4212
-rw-r--r--keyboard/hhkb/not_supported/Makefile.iwrap12
-rw-r--r--keyboard/hhkb/not_supported/Makefile.vusb10
-rw-r--r--keyboard/hid_liber/Makefile.lufa10
-rw-r--r--keyboard/hid_liber/Makefile.pjrc10
-rw-r--r--keyboard/kitten_paw/Makefile.lufa10
-rw-r--r--keyboard/kmac/Makefile.lufa10
-rw-r--r--keyboard/kmac/Makefile.pjrc10
-rw-r--r--keyboard/lightpad/Makefile.lufa10
-rw-r--r--keyboard/lightsaber/Makefile.lufa10
-rw-r--r--keyboard/lightsaber/Makefile.pjrc10
-rw-r--r--keyboard/macway/Makefile.lufa10
-rw-r--r--keyboard/macway/Makefile.pjrc10
-rw-r--r--keyboard/nerd/Makefile10
-rw-r--r--keyboard/onekey/Makefile12
-rw-r--r--keyboard/onekey/Makefile.pjrc12
-rw-r--r--keyboard/phantom/Makefile.lufa10
-rw-r--r--keyboard/phantom/Makefile.pjrc10
-rw-r--r--protocol.mk2
-rw-r--r--protocol/bluefruit.mk6
-rw-r--r--protocol/iwrap.mk4
-rw-r--r--protocol/lufa.mk12
-rw-r--r--protocol/pjrc.mk2
-rw-r--r--protocol/usb_hid.mk10
-rw-r--r--protocol/usb_hid/test/Makefile12
-rw-r--r--protocol/vusb.mk2
-rw-r--r--tool/mbed/common.mk2
58 files changed, 295 insertions, 295 deletions
diff --git a/common.mk b/common.mk
index b854f09cd..d22adff51 100644
--- a/common.mk
+++ b/common.mk
@@ -66,7 +66,7 @@ endif
66 66
67ifdef KEYMAP_SECTION_ENABLE 67ifdef KEYMAP_SECTION_ENABLE
68 OPT_DEFS += -DKEYMAP_SECTION_ENABLE 68 OPT_DEFS += -DKEYMAP_SECTION_ENABLE
69 EXTRALDFLAGS = -Wl,-L$(TOP_DIR),-Tldscript_keymap_avr5.x 69 EXTRALDFLAGS = -Wl,-L$(TMK_DIR),-Tldscript_keymap_avr5.x
70endif 70endif
71 71
72# Version string 72# Version string
@@ -74,4 +74,4 @@ OPT_DEFS += -DVERSION=$(shell (git describe --always --dirty || echo 'unknown')
74 74
75 75
76# Search Path 76# Search Path
77VPATH += $(TOP_DIR)/common 77VPATH += $(TMK_DIR)/common
diff --git a/converter/adb_usb/Makefile b/converter/adb_usb/Makefile
index bbb7810ee..16770fa41 100644
--- a/converter/adb_usb/Makefile
+++ b/converter/adb_usb/Makefile
@@ -42,7 +42,7 @@
42TARGET = adb_usb_lufa 42TARGET = adb_usb_lufa
43 43
44# Directory common source filess exist 44# Directory common source filess exist
45TOP_DIR = ../.. 45TMK_DIR = ../..
46 46
47# Directory keyboard dependent files exist 47# Directory keyboard dependent files exist
48TARGET_DIR = . 48TARGET_DIR = .
@@ -129,9 +129,9 @@ COMMAND_ENABLE = yes # Commands for debug and configuration
129 129
130# Search Path 130# Search Path
131VPATH += $(TARGET_DIR) 131VPATH += $(TARGET_DIR)
132VPATH += $(TOP_DIR) 132VPATH += $(TMK_DIR)
133 133
134include $(TOP_DIR)/protocol/lufa.mk 134include $(TMK_DIR)/protocol/lufa.mk
135include $(TOP_DIR)/protocol.mk 135include $(TMK_DIR)/protocol.mk
136include $(TOP_DIR)/common.mk 136include $(TMK_DIR)/common.mk
137include $(TOP_DIR)/rules.mk 137include $(TMK_DIR)/rules.mk
diff --git a/converter/adb_usb/Makefile.pjrc b/converter/adb_usb/Makefile.pjrc
index 2eb41b34b..69e2325f9 100644
--- a/converter/adb_usb/Makefile.pjrc
+++ b/converter/adb_usb/Makefile.pjrc
@@ -2,7 +2,7 @@
2TARGET = adb_usb_pjrc 2TARGET = adb_usb_pjrc
3 3
4# Directory common source filess exist 4# Directory common source filess exist
5TOP_DIR = ../.. 5TMK_DIR = ../..
6 6
7# Directory keyboard dependent files exist 7# Directory keyboard dependent files exist
8TARGET_DIR = . 8TARGET_DIR = .
@@ -61,9 +61,9 @@ COMMAND_ENABLE = yes # Commands for debug and configuration
61 61
62# Search Path 62# Search Path
63VPATH += $(TARGET_DIR) 63VPATH += $(TARGET_DIR)
64VPATH += $(TOP_DIR) 64VPATH += $(TMK_DIR)
65 65
66include $(TOP_DIR)/protocol/pjrc.mk 66include $(TMK_DIR)/protocol/pjrc.mk
67include $(TOP_DIR)/protocol.mk 67include $(TMK_DIR)/protocol.mk
68include $(TOP_DIR)/common.mk 68include $(TMK_DIR)/common.mk
69include $(TOP_DIR)/rules.mk 69include $(TMK_DIR)/rules.mk
diff --git a/converter/ascii_usb/Makefile b/converter/ascii_usb/Makefile
index 408aa4237..b9549e38a 100644
--- a/converter/ascii_usb/Makefile
+++ b/converter/ascii_usb/Makefile
@@ -2,7 +2,7 @@
2TARGET = ascii_usb 2TARGET = ascii_usb
3 3
4# Directory common source filess exist 4# Directory common source filess exist
5TOP_DIR = ../.. 5TMK_DIR = ../..
6 6
7# Directory keyboard dependent files exist 7# Directory keyboard dependent files exist
8TARGET_DIR = . 8TARGET_DIR = .
@@ -73,10 +73,10 @@ OPT_DEFS += -DBOOTLOADER_SIZE=4096
73 73
74# Search Path 74# Search Path
75VPATH += $(TARGET_DIR) 75VPATH += $(TARGET_DIR)
76VPATH += $(TOP_DIR) 76VPATH += $(TMK_DIR)
77 77
78 78
79include $(TOP_DIR)/protocol/lufa.mk 79include $(TMK_DIR)/protocol/lufa.mk
80include $(TOP_DIR)/protocol.mk 80include $(TMK_DIR)/protocol.mk
81include $(TOP_DIR)/common.mk 81include $(TMK_DIR)/common.mk
82include $(TOP_DIR)/rules.mk 82include $(TMK_DIR)/rules.mk
diff --git a/converter/ibm4704_usb/Makefile b/converter/ibm4704_usb/Makefile
index 112b00129..c1e8c385d 100644
--- a/converter/ibm4704_usb/Makefile
+++ b/converter/ibm4704_usb/Makefile
@@ -2,7 +2,7 @@
2TARGET = ibm4704_usb 2TARGET = ibm4704_usb
3 3
4# Directory common source filess exist 4# Directory common source filess exist
5TOP_DIR = ../.. 5TMK_DIR = ../..
6 6
7# Directory keyboard dependent files exist 7# Directory keyboard dependent files exist
8TARGET_DIR = . 8TARGET_DIR = .
@@ -85,9 +85,9 @@ COMMAND_ENABLE = yes # Commands for debug and configuration
85 85
86# Search Path 86# Search Path
87VPATH += $(TARGET_DIR) 87VPATH += $(TARGET_DIR)
88VPATH += $(TOP_DIR) 88VPATH += $(TMK_DIR)
89 89
90include $(TOP_DIR)/protocol.mk 90include $(TMK_DIR)/protocol.mk
91include $(TOP_DIR)/protocol/lufa.mk 91include $(TMK_DIR)/protocol/lufa.mk
92include $(TOP_DIR)/common.mk 92include $(TMK_DIR)/common.mk
93include $(TOP_DIR)/rules.mk 93include $(TMK_DIR)/rules.mk
diff --git a/converter/m0110_usb/Makefile b/converter/m0110_usb/Makefile
index 6f20396f5..466285fe9 100644
--- a/converter/m0110_usb/Makefile
+++ b/converter/m0110_usb/Makefile
@@ -2,7 +2,7 @@
2TARGET = m0110_lufa 2TARGET = m0110_lufa
3 3
4# Directory common source filess exist 4# Directory common source filess exist
5TOP_DIR = ../.. 5TMK_DIR = ../..
6 6
7# Directory keyboard dependent files exist 7# Directory keyboard dependent files exist
8TARGET_DIR = . 8TARGET_DIR = .
@@ -87,10 +87,10 @@ PROGRAM_CMD = teensy_loader_cli -mmcu=$(MCU) -w -v $(TARGET).hex
87 87
88# Search Path 88# Search Path
89VPATH += $(TARGET_DIR) 89VPATH += $(TARGET_DIR)
90VPATH += $(TOP_DIR) 90VPATH += $(TMK_DIR)
91 91
92 92
93include $(TOP_DIR)/protocol/lufa.mk 93include $(TMK_DIR)/protocol/lufa.mk
94include $(TOP_DIR)/protocol.mk 94include $(TMK_DIR)/protocol.mk
95include $(TOP_DIR)/common.mk 95include $(TMK_DIR)/common.mk
96include $(TOP_DIR)/rules.mk 96include $(TMK_DIR)/rules.mk
diff --git a/converter/m0110_usb/Makefile.pjrc b/converter/m0110_usb/Makefile.pjrc
index 37977a384..5faf5c255 100644
--- a/converter/m0110_usb/Makefile.pjrc
+++ b/converter/m0110_usb/Makefile.pjrc
@@ -2,7 +2,7 @@
2TARGET = m0110_pjrc 2TARGET = m0110_pjrc
3 3
4# Directory common source filess exist 4# Directory common source filess exist
5TOP_DIR = ../.. 5TMK_DIR = ../..
6 6
7# Directory keyboard dependent files exist 7# Directory keyboard dependent files exist
8TARGET_DIR = . 8TARGET_DIR = .
@@ -64,10 +64,10 @@ PROGRAM_CMD = teensy_loader_cli -mmcu=$(MCU) -w -v $(TARGET).hex
64 64
65# Search Path 65# Search Path
66VPATH += $(TARGET_DIR) 66VPATH += $(TARGET_DIR)
67VPATH += $(TOP_DIR) 67VPATH += $(TMK_DIR)
68 68
69 69
70include $(TOP_DIR)/protocol/pjrc.mk 70include $(TMK_DIR)/protocol/pjrc.mk
71include $(TOP_DIR)/protocol.mk 71include $(TMK_DIR)/protocol.mk
72include $(TOP_DIR)/common.mk 72include $(TMK_DIR)/common.mk
73include $(TOP_DIR)/rules.mk 73include $(TMK_DIR)/rules.mk
diff --git a/converter/m0110_usb/Makefile.teensy b/converter/m0110_usb/Makefile.teensy
index 9a5c41068..f664b6753 100644
--- a/converter/m0110_usb/Makefile.teensy
+++ b/converter/m0110_usb/Makefile.teensy
@@ -2,7 +2,7 @@
2TARGET = m0110_lufa 2TARGET = m0110_lufa
3 3
4# Directory common source filess exist 4# Directory common source filess exist
5TOP_DIR = ../.. 5TMK_DIR = ../..
6 6
7# Directory keyboard dependent files exist 7# Directory keyboard dependent files exist
8TARGET_DIR = . 8TARGET_DIR = .
@@ -89,10 +89,10 @@ PROGRAM_CMD = teensy_loader_cli -mmcu=$(MCU) -w -v $(TARGET).hex
89 89
90# Search Path 90# Search Path
91VPATH += $(TARGET_DIR) 91VPATH += $(TARGET_DIR)
92VPATH += $(TOP_DIR) 92VPATH += $(TMK_DIR)
93 93
94 94
95include $(TOP_DIR)/protocol/lufa.mk 95include $(TMK_DIR)/protocol/lufa.mk
96include $(TOP_DIR)/protocol.mk 96include $(TMK_DIR)/protocol.mk
97include $(TOP_DIR)/common.mk 97include $(TMK_DIR)/common.mk
98include $(TOP_DIR)/rules.mk 98include $(TMK_DIR)/rules.mk
diff --git a/converter/news_usb/Makefile.pjrc b/converter/news_usb/Makefile.pjrc
index 98f8d5769..29b27acf6 100644
--- a/converter/news_usb/Makefile.pjrc
+++ b/converter/news_usb/Makefile.pjrc
@@ -7,7 +7,7 @@
7TARGET = news_usb_pjrc 7TARGET = news_usb_pjrc
8 8
9# Directory common source filess exist 9# Directory common source filess exist
10TOP_DIR = ../.. 10TMK_DIR = ../..
11 11
12# Directory keyboard dependent files exist 12# Directory keyboard dependent files exist
13TARGET_DIR = . 13TARGET_DIR = .
@@ -65,10 +65,10 @@ PROGRAM_CMD = teensy_loader_cli -mmcu=$(MCU) -w -v $(TARGET).hex
65 65
66# Search Path 66# Search Path
67VPATH += $(TARGET_DIR) 67VPATH += $(TARGET_DIR)
68VPATH += $(TOP_DIR) 68VPATH += $(TMK_DIR)
69 69
70 70
71include $(TOP_DIR)/protocol/pjrc.mk 71include $(TMK_DIR)/protocol/pjrc.mk
72include $(TOP_DIR)/protocol.mk 72include $(TMK_DIR)/protocol.mk
73include $(TOP_DIR)/common.mk 73include $(TMK_DIR)/common.mk
74include $(TOP_DIR)/rules.mk 74include $(TMK_DIR)/rules.mk
diff --git a/converter/next_usb/Makefile b/converter/next_usb/Makefile
index fef539a14..719081f9b 100644
--- a/converter/next_usb/Makefile
+++ b/converter/next_usb/Makefile
@@ -2,7 +2,7 @@
2TARGET = next_usb 2TARGET = next_usb
3 3
4# Directory common source filess exist 4# Directory common source filess exist
5TOP_DIR = ../.. 5TMK_DIR = ../..
6 6
7# Directory keyboard dependent files exist 7# Directory keyboard dependent files exist
8TARGET_DIR = . 8TARGET_DIR = .
@@ -78,10 +78,10 @@ SRC += next_kbd.c
78 78
79# Search Path 79# Search Path
80VPATH += $(TARGET_DIR) 80VPATH += $(TARGET_DIR)
81VPATH += $(TOP_DIR) 81VPATH += $(TMK_DIR)
82 82
83 83
84include $(TOP_DIR)/protocol.mk 84include $(TMK_DIR)/protocol.mk
85include $(TOP_DIR)/protocol/lufa.mk 85include $(TMK_DIR)/protocol/lufa.mk
86include $(TOP_DIR)/common.mk 86include $(TMK_DIR)/common.mk
87include $(TOP_DIR)/rules.mk 87include $(TMK_DIR)/rules.mk
diff --git a/converter/next_usb/Makefile.pjrc b/converter/next_usb/Makefile.pjrc
index 51d9de6b1..75ca13c9e 100644
--- a/converter/next_usb/Makefile.pjrc
+++ b/converter/next_usb/Makefile.pjrc
@@ -2,7 +2,7 @@
2TARGET = next_usb 2TARGET = next_usb
3 3
4# Directory common source filess exist 4# Directory common source filess exist
5TOP_DIR = ../.. 5TMK_DIR = ../..
6 6
7# Directory keyboard dependent files exist 7# Directory keyboard dependent files exist
8TARGET_DIR = . 8TARGET_DIR = .
@@ -54,10 +54,10 @@ SRC += next_kbd.c
54 54
55# Search Path 55# Search Path
56VPATH += $(TARGET_DIR) 56VPATH += $(TARGET_DIR)
57VPATH += $(TOP_DIR) 57VPATH += $(TMK_DIR)
58 58
59 59
60include $(TOP_DIR)/protocol.mk 60include $(TMK_DIR)/protocol.mk
61include $(TOP_DIR)/protocol/pjrc.mk 61include $(TMK_DIR)/protocol/pjrc.mk
62include $(TOP_DIR)/common.mk 62include $(TMK_DIR)/common.mk
63include $(TOP_DIR)/rules.mk 63include $(TMK_DIR)/rules.mk
diff --git a/converter/pc98_usb/Makefile b/converter/pc98_usb/Makefile
index 71c7858f3..56738b34b 100644
--- a/converter/pc98_usb/Makefile
+++ b/converter/pc98_usb/Makefile
@@ -2,7 +2,7 @@
2TARGET = pc98_usb 2TARGET = pc98_usb
3 3
4# Directory common source filess exist 4# Directory common source filess exist
5TOP_DIR = ../.. 5TMK_DIR = ../..
6 6
7# Directory keyboard dependent files exist 7# Directory keyboard dependent files exist
8TARGET_DIR = . 8TARGET_DIR = .
@@ -74,10 +74,10 @@ OPT_DEFS += -DBOOTLOADER_SIZE=4096
74 74
75# Search Path 75# Search Path
76VPATH += $(TARGET_DIR) 76VPATH += $(TARGET_DIR)
77VPATH += $(TOP_DIR) 77VPATH += $(TMK_DIR)
78 78
79 79
80include $(TOP_DIR)/protocol/lufa.mk 80include $(TMK_DIR)/protocol/lufa.mk
81include $(TOP_DIR)/protocol.mk 81include $(TMK_DIR)/protocol.mk
82include $(TOP_DIR)/common.mk 82include $(TMK_DIR)/common.mk
83include $(TOP_DIR)/rules.mk 83include $(TMK_DIR)/rules.mk
diff --git a/converter/ps2_usb/Makefile b/converter/ps2_usb/Makefile
index 1dd23c157..39455defd 100644
--- a/converter/ps2_usb/Makefile
+++ b/converter/ps2_usb/Makefile
@@ -5,7 +5,7 @@
5TARGET = ps2_usb_lufa 5TARGET = ps2_usb_lufa
6 6
7# Directory common source filess exist 7# Directory common source filess exist
8TOP_DIR = ../.. 8TMK_DIR = ../..
9 9
10# Directory keyboard dependent files exist 10# Directory keyboard dependent files exist
11TARGET_DIR = . 11TARGET_DIR = .
@@ -97,9 +97,9 @@ PS2_USE_USART = yes # uses hardware USART engine for PS/2 signal receive(recomen
97 97
98# Search Path 98# Search Path
99VPATH += $(TARGET_DIR) 99VPATH += $(TARGET_DIR)
100VPATH += $(TOP_DIR) 100VPATH += $(TMK_DIR)
101 101
102include $(TOP_DIR)/protocol.mk 102include $(TMK_DIR)/protocol.mk
103include $(TOP_DIR)/protocol/lufa.mk 103include $(TMK_DIR)/protocol/lufa.mk
104include $(TOP_DIR)/common.mk 104include $(TMK_DIR)/common.mk
105include $(TOP_DIR)/rules.mk 105include $(TMK_DIR)/rules.mk
diff --git a/converter/ps2_usb/Makefile.pjrc b/converter/ps2_usb/Makefile.pjrc
index 0e175f8b4..2aa2a8dc3 100644
--- a/converter/ps2_usb/Makefile.pjrc
+++ b/converter/ps2_usb/Makefile.pjrc
@@ -2,7 +2,7 @@
2TARGET = ps2_usb_pjrc 2TARGET = ps2_usb_pjrc
3 3
4# Directory common source filess exist 4# Directory common source filess exist
5TOP_DIR = ../.. 5TMK_DIR = ../..
6 6
7# Directory keyboard dependent files exist 7# Directory keyboard dependent files exist
8TARGET_DIR = . 8TARGET_DIR = .
@@ -66,10 +66,10 @@ PS2_USE_BUSYWAIT = yes # uses primitive reference code
66 66
67# Search Path 67# Search Path
68VPATH += $(TARGET_DIR) 68VPATH += $(TARGET_DIR)
69VPATH += $(TOP_DIR) 69VPATH += $(TMK_DIR)
70 70
71 71
72include $(TOP_DIR)/protocol.mk 72include $(TMK_DIR)/protocol.mk
73include $(TOP_DIR)/protocol/pjrc.mk 73include $(TMK_DIR)/protocol/pjrc.mk
74include $(TOP_DIR)/common.mk 74include $(TMK_DIR)/common.mk
75include $(TOP_DIR)/rules.mk 75include $(TMK_DIR)/rules.mk
diff --git a/converter/ps2_usb/Makefile.tmk_rev1 b/converter/ps2_usb/Makefile.tmk_rev1
index 59c44f75f..8b227c2f6 100644
--- a/converter/ps2_usb/Makefile.tmk_rev1
+++ b/converter/ps2_usb/Makefile.tmk_rev1
@@ -6,7 +6,7 @@
6TARGET = ps2_usb_tmk_rev1 6TARGET = ps2_usb_tmk_rev1
7 7
8# Directory common source filess exist 8# Directory common source filess exist
9TOP_DIR = ../.. 9TMK_DIR = ../..
10 10
11# Directory keyboard dependent files exist 11# Directory keyboard dependent files exist
12TARGET_DIR = . 12TARGET_DIR = .
@@ -90,9 +90,9 @@ PS2_USE_USART = yes # uses hardware USART engine for PS/2 signal receive(recomen
90 90
91# Search Path 91# Search Path
92VPATH += $(TARGET_DIR) 92VPATH += $(TARGET_DIR)
93VPATH += $(TOP_DIR) 93VPATH += $(TMK_DIR)
94 94
95include $(TOP_DIR)/protocol.mk 95include $(TMK_DIR)/protocol.mk
96include $(TOP_DIR)/protocol/lufa.mk 96include $(TMK_DIR)/protocol/lufa.mk
97include $(TOP_DIR)/common.mk 97include $(TMK_DIR)/common.mk
98include $(TOP_DIR)/rules.mk 98include $(TMK_DIR)/rules.mk
diff --git a/converter/ps2_usb/Makefile.tmk_rev2 b/converter/ps2_usb/Makefile.tmk_rev2
index bad958c36..93e226615 100644
--- a/converter/ps2_usb/Makefile.tmk_rev2
+++ b/converter/ps2_usb/Makefile.tmk_rev2
@@ -6,7 +6,7 @@
6TARGET = ps2_usb_tmk_rev2 6TARGET = ps2_usb_tmk_rev2
7 7
8# Directory common source filess exist 8# Directory common source filess exist
9TOP_DIR = ../.. 9TMK_DIR = ../..
10 10
11# Directory keyboard dependent files exist 11# Directory keyboard dependent files exist
12TARGET_DIR = . 12TARGET_DIR = .
@@ -90,9 +90,9 @@ PS2_USE_INT = yes # uses external interrupt for falling edge of PS/2 clock pin
90 90
91# Search Path 91# Search Path
92VPATH += $(TARGET_DIR) 92VPATH += $(TARGET_DIR)
93VPATH += $(TOP_DIR) 93VPATH += $(TMK_DIR)
94 94
95include $(TOP_DIR)/protocol.mk 95include $(TMK_DIR)/protocol.mk
96include $(TOP_DIR)/protocol/lufa.mk 96include $(TMK_DIR)/protocol/lufa.mk
97include $(TOP_DIR)/common.mk 97include $(TMK_DIR)/common.mk
98include $(TOP_DIR)/rules.mk 98include $(TMK_DIR)/rules.mk
diff --git a/converter/ps2_usb/Makefile.vusb b/converter/ps2_usb/Makefile.vusb
index ddf186845..facee6905 100644
--- a/converter/ps2_usb/Makefile.vusb
+++ b/converter/ps2_usb/Makefile.vusb
@@ -2,7 +2,7 @@
2TARGET = ps2_usb_vusb 2TARGET = ps2_usb_vusb
3 3
4# Directory common source filess exist 4# Directory common source filess exist
5TOP_DIR = ../.. 5TMK_DIR = ../..
6 6
7# Directory keyboard dependent files exist 7# Directory keyboard dependent files exist
8TARGET_DIR = . 8TARGET_DIR = .
@@ -98,10 +98,10 @@ OPT_DEFS += -DBOOTLOADER_SIZE=2048
98 98
99# Search Path 99# Search Path
100VPATH += $(TARGET_DIR) 100VPATH += $(TARGET_DIR)
101VPATH += $(TOP_DIR) 101VPATH += $(TMK_DIR)
102 102
103 103
104include $(TOP_DIR)/protocol.mk 104include $(TMK_DIR)/protocol.mk
105include $(TOP_DIR)/common.mk 105include $(TMK_DIR)/common.mk
106include $(TOP_DIR)/protocol/vusb.mk 106include $(TMK_DIR)/protocol/vusb.mk
107include $(TOP_DIR)/rules.mk 107include $(TMK_DIR)/rules.mk
diff --git a/converter/serialmouse_usb/Makefile b/converter/serialmouse_usb/Makefile
index ea0e439bd..87b5aacbb 100644
--- a/converter/serialmouse_usb/Makefile
+++ b/converter/serialmouse_usb/Makefile
@@ -5,7 +5,7 @@
5TARGET = serialmouse_usb 5TARGET = serialmouse_usb
6 6
7# Directory common source filess exist 7# Directory common source filess exist
8TOP_DIR = ../.. 8TMK_DIR = ../..
9 9
10# Directory keyboard dependent files exist 10# Directory keyboard dependent files exist
11TARGET_DIR = . 11TARGET_DIR = .
@@ -98,9 +98,9 @@ SERIAL_MOUSE_USE_SOFT = yes # use software serial implementation
98 98
99# Search Path 99# Search Path
100VPATH += $(TARGET_DIR) 100VPATH += $(TARGET_DIR)
101VPATH += $(TOP_DIR) 101VPATH += $(TMK_DIR)
102 102
103include $(TOP_DIR)/protocol.mk 103include $(TMK_DIR)/protocol.mk
104include $(TOP_DIR)/protocol/lufa.mk 104include $(TMK_DIR)/protocol/lufa.mk
105include $(TOP_DIR)/common.mk 105include $(TMK_DIR)/common.mk
106include $(TOP_DIR)/rules.mk 106include $(TMK_DIR)/rules.mk
diff --git a/converter/sun_usb/Makefile b/converter/sun_usb/Makefile
index b32497cd9..19e188100 100644
--- a/converter/sun_usb/Makefile
+++ b/converter/sun_usb/Makefile
@@ -2,7 +2,7 @@
2TARGET = sun_usb 2TARGET = sun_usb
3 3
4# Directory common source filess exist 4# Directory common source filess exist
5TOP_DIR = ../.. 5TMK_DIR = ../..
6 6
7# Directory keyboard dependent files exist 7# Directory keyboard dependent files exist
8TARGET_DIR = . 8TARGET_DIR = .
@@ -76,10 +76,10 @@ OPT_DEFS += -DBOOTLOADER_SIZE=4096
76 76
77# Search Path 77# Search Path
78VPATH += $(TARGET_DIR) 78VPATH += $(TARGET_DIR)
79VPATH += $(TOP_DIR) 79VPATH += $(TMK_DIR)
80 80
81 81
82include $(TOP_DIR)/protocol/lufa.mk 82include $(TMK_DIR)/protocol/lufa.mk
83include $(TOP_DIR)/protocol.mk 83include $(TMK_DIR)/protocol.mk
84include $(TOP_DIR)/common.mk 84include $(TMK_DIR)/common.mk
85include $(TOP_DIR)/rules.mk 85include $(TMK_DIR)/rules.mk
diff --git a/converter/terminal_bluefruit/Makefile b/converter/terminal_bluefruit/Makefile
index 28b7397ba..d28cbf008 100644
--- a/converter/terminal_bluefruit/Makefile
+++ b/converter/terminal_bluefruit/Makefile
@@ -2,7 +2,7 @@
2TARGET = terminal_bluefruit 2TARGET = terminal_bluefruit
3 3
4# Directory common source filess exist 4# Directory common source filess exist
5TOP_DIR = ../.. 5TMK_DIR = ../..
6 6
7# Directory keyboard dependent files exist 7# Directory keyboard dependent files exist
8TARGET_DIR = . 8TARGET_DIR = .
@@ -89,11 +89,11 @@ PROGRAM_CMD = teensy_loader_cli -mmcu=$(MCU) -w -v $(TARGET).hex
89 89
90# Search Path 90# Search Path
91VPATH += $(TARGET_DIR) 91VPATH += $(TARGET_DIR)
92VPATH += $(TOP_DIR) 92VPATH += $(TMK_DIR)
93 93
94 94
95include $(TOP_DIR)/protocol.mk 95include $(TMK_DIR)/protocol.mk
96include $(TOP_DIR)/protocol/bluefruit.mk 96include $(TMK_DIR)/protocol/bluefruit.mk
97include $(TOP_DIR)/protocol.mk 97include $(TMK_DIR)/protocol.mk
98include $(TOP_DIR)/common.mk 98include $(TMK_DIR)/common.mk
99include $(TOP_DIR)/rules.mk 99include $(TMK_DIR)/rules.mk
diff --git a/converter/terminal_usb/Makefile b/converter/terminal_usb/Makefile
index 16df638b9..de0710f7c 100644
--- a/converter/terminal_usb/Makefile
+++ b/converter/terminal_usb/Makefile
@@ -2,7 +2,7 @@
2TARGET = terminal_lufa 2TARGET = terminal_lufa
3 3
4# Directory common source filess exist 4# Directory common source filess exist
5TOP_DIR = ../.. 5TMK_DIR = ../..
6 6
7# Directory keyboard dependent files exist 7# Directory keyboard dependent files exist
8TARGET_DIR = . 8TARGET_DIR = .
@@ -89,10 +89,10 @@ PROGRAM_CMD = teensy_loader_cli -mmcu=$(MCU) -w -v $(TARGET).hex
89 89
90# Search Path 90# Search Path
91VPATH += $(TARGET_DIR) 91VPATH += $(TARGET_DIR)
92VPATH += $(TOP_DIR) 92VPATH += $(TMK_DIR)
93 93
94 94
95include $(TOP_DIR)/protocol/lufa.mk 95include $(TMK_DIR)/protocol/lufa.mk
96include $(TOP_DIR)/protocol.mk 96include $(TMK_DIR)/protocol.mk
97include $(TOP_DIR)/common.mk 97include $(TMK_DIR)/common.mk
98include $(TOP_DIR)/rules.mk 98include $(TMK_DIR)/rules.mk
diff --git a/converter/usb_usb/Makefile b/converter/usb_usb/Makefile
index d6867bb00..a1ceaaa4e 100644
--- a/converter/usb_usb/Makefile
+++ b/converter/usb_usb/Makefile
@@ -41,7 +41,7 @@
41# Target file name (without extension). 41# Target file name (without extension).
42TARGET = usb_usb 42TARGET = usb_usb
43 43
44TOP_DIR = ../.. 44TMK_DIR = ../..
45 45
46# Directory keyboard dependent files exist 46# Directory keyboard dependent files exist
47TARGET_DIR = . 47TARGET_DIR = .
@@ -121,7 +121,7 @@ CONFIG_H = config.h
121 121
122# Search Path 122# Search Path
123VPATH += $(TARGET_DIR) 123VPATH += $(TARGET_DIR)
124VPATH += $(TOP_DIR) 124VPATH += $(TMK_DIR)
125 125
126 126
127 127
@@ -130,7 +130,7 @@ PROGRAM_CMD = avrdude -p$(MCU) -cavr109 -b57600 -Uflash:w:$(TARGET).hex -P$(DEV)
130 130
131 131
132 132
133include $(TOP_DIR)/protocol/usb_hid.mk 133include $(TMK_DIR)/protocol/usb_hid.mk
134include $(TOP_DIR)/protocol/lufa.mk 134include $(TMK_DIR)/protocol/lufa.mk
135include $(TOP_DIR)/common.mk 135include $(TMK_DIR)/common.mk
136include $(TOP_DIR)/rules.mk 136include $(TMK_DIR)/rules.mk
diff --git a/converter/x68k_usb/Makefile b/converter/x68k_usb/Makefile
index 948622c7c..a34e1c79f 100644
--- a/converter/x68k_usb/Makefile
+++ b/converter/x68k_usb/Makefile
@@ -7,7 +7,7 @@
7TARGET = x68k_usb_pjrc 7TARGET = x68k_usb_pjrc
8 8
9# Directory common source filess exist 9# Directory common source filess exist
10TOP_DIR = ../.. 10TMK_DIR = ../..
11 11
12# Directory keyboard dependent files exist 12# Directory keyboard dependent files exist
13TARGET_DIR = . 13TARGET_DIR = .
@@ -92,10 +92,10 @@ PROGRAM_CMD = dfu-programmer atmega32u4 flash $(TARGET).hex
92 92
93# Search Path 93# Search Path
94VPATH += $(TARGET_DIR) 94VPATH += $(TARGET_DIR)
95VPATH += $(TOP_DIR) 95VPATH += $(TMK_DIR)
96 96
97 97
98include $(TOP_DIR)/protocol/pjrc.mk 98include $(TMK_DIR)/protocol/pjrc.mk
99include $(TOP_DIR)/protocol.mk 99include $(TMK_DIR)/protocol.mk
100include $(TOP_DIR)/common.mk 100include $(TMK_DIR)/common.mk
101include $(TOP_DIR)/rules.mk 101include $(TMK_DIR)/rules.mk
diff --git a/keyboard/IIgs/Makefile b/keyboard/IIgs/Makefile
index c18e9720c..938877c3d 100644
--- a/keyboard/IIgs/Makefile
+++ b/keyboard/IIgs/Makefile
@@ -42,7 +42,7 @@
42TARGET = IIgs_Standard 42TARGET = IIgs_Standard
43 43
44# Directory common source filess exist 44# Directory common source filess exist
45TOP_DIR = ../.. 45TMK_DIR = ../..
46 46
47# Directory keyboard dependent files exist 47# Directory keyboard dependent files exist
48TARGET_DIR = . 48TARGET_DIR = .
@@ -88,8 +88,8 @@ PROGRAM_CMD = teensy_loader_cli -mmcu=$(MCU) -w -v $(TARGET).hex
88 88
89# Search Path 89# Search Path
90VPATH += $(TARGET_DIR) 90VPATH += $(TARGET_DIR)
91VPATH += $(TOP_DIR) 91VPATH += $(TMK_DIR)
92 92
93include $(TOP_DIR)/protocol/pjrc.mk 93include $(TMK_DIR)/protocol/pjrc.mk
94include $(TOP_DIR)/common.mk 94include $(TMK_DIR)/common.mk
95include $(TOP_DIR)/rules.mk 95include $(TMK_DIR)/rules.mk
diff --git a/keyboard/alps64/Makefile b/keyboard/alps64/Makefile
index a7d59309e..3e0dccc9e 100644
--- a/keyboard/alps64/Makefile
+++ b/keyboard/alps64/Makefile
@@ -42,7 +42,7 @@
42TARGET = alps64 42TARGET = alps64
43 43
44# Directory common source filess exist 44# Directory common source filess exist
45TOP_DIR = ../.. 45TMK_DIR = ../..
46 46
47# Directory keyboard dependent files exist 47# Directory keyboard dependent files exist
48TARGET_DIR = . 48TARGET_DIR = .
@@ -127,8 +127,8 @@ COMMAND_ENABLE = yes # Commands for debug and configuration
127 127
128# Search Path 128# Search Path
129VPATH += $(TARGET_DIR) 129VPATH += $(TARGET_DIR)
130VPATH += $(TOP_DIR) 130VPATH += $(TMK_DIR)
131 131
132include $(TOP_DIR)/protocol/lufa.mk 132include $(TMK_DIR)/protocol/lufa.mk
133include $(TOP_DIR)/common.mk 133include $(TMK_DIR)/common.mk
134include $(TOP_DIR)/rules.mk 134include $(TMK_DIR)/rules.mk
diff --git a/keyboard/gh60/Makefile b/keyboard/gh60/Makefile
index fd202c179..347847f77 100644
--- a/keyboard/gh60/Makefile
+++ b/keyboard/gh60/Makefile
@@ -42,7 +42,7 @@
42TARGET = gh60_lufa 42TARGET = gh60_lufa
43 43
44# Directory common source filess exist 44# Directory common source filess exist
45TOP_DIR = ../.. 45TMK_DIR = ../..
46 46
47# Directory keyboard dependent files exist 47# Directory keyboard dependent files exist
48TARGET_DIR = . 48TARGET_DIR = .
@@ -128,8 +128,8 @@ NKRO_ENABLE = yes # USB Nkey Rollover - not yet supported in LUFA
128 128
129# Search Path 129# Search Path
130VPATH += $(TARGET_DIR) 130VPATH += $(TARGET_DIR)
131VPATH += $(TOP_DIR) 131VPATH += $(TMK_DIR)
132 132
133include $(TOP_DIR)/protocol/lufa.mk 133include $(TMK_DIR)/protocol/lufa.mk
134include $(TOP_DIR)/common.mk 134include $(TMK_DIR)/common.mk
135include $(TOP_DIR)/rules.mk 135include $(TMK_DIR)/rules.mk
diff --git a/keyboard/gh60/Makefile.pjrc b/keyboard/gh60/Makefile.pjrc
index 9655ff65a..291579e64 100644
--- a/keyboard/gh60/Makefile.pjrc
+++ b/keyboard/gh60/Makefile.pjrc
@@ -42,7 +42,7 @@
42TARGET = gh60_pjrc 42TARGET = gh60_pjrc
43 43
44# Directory common source filess exist 44# Directory common source filess exist
45TOP_DIR = ../.. 45TMK_DIR = ../..
46 46
47# Directory keyboard dependent files exist 47# Directory keyboard dependent files exist
48TARGET_DIR = . 48TARGET_DIR = .
@@ -97,11 +97,11 @@ NKRO_ENABLE = yes # USB Nkey Rollover(+500)
97 97
98# Search Path 98# Search Path
99VPATH += $(TARGET_DIR) 99VPATH += $(TARGET_DIR)
100VPATH += $(TOP_DIR) 100VPATH += $(TMK_DIR)
101 101
102include $(TOP_DIR)/protocol/pjrc.mk 102include $(TMK_DIR)/protocol/pjrc.mk
103include $(TOP_DIR)/common.mk 103include $(TMK_DIR)/common.mk
104include $(TOP_DIR)/rules.mk 104include $(TMK_DIR)/rules.mk
105 105
106plain: OPT_DEFS += -DKEYMAP_PLAIN 106plain: OPT_DEFS += -DKEYMAP_PLAIN
107plain: all 107plain: all
diff --git a/keyboard/ghost_squid/Makefile.lufa b/keyboard/ghost_squid/Makefile.lufa
index 61893893a..cfd7e8ecf 100644
--- a/keyboard/ghost_squid/Makefile.lufa
+++ b/keyboard/ghost_squid/Makefile.lufa
@@ -42,7 +42,7 @@
42TARGET = ghostsquid_lufa 42TARGET = ghostsquid_lufa
43 43
44# Directory common source filess exist 44# Directory common source filess exist
45TOP_DIR = ../.. 45TMK_DIR = ../..
46 46
47# Directory keyboard dependent files exist 47# Directory keyboard dependent files exist
48TARGET_DIR = . 48TARGET_DIR = .
@@ -110,8 +110,8 @@ OPT_DEFS += -DBOOTLOADER_SIZE=4096
110 110
111# Search Path 111# Search Path
112VPATH += $(TARGET_DIR) 112VPATH += $(TARGET_DIR)
113VPATH += $(TOP_DIR) 113VPATH += $(TMK_DIR)
114 114
115include $(TOP_DIR)/protocol/lufa.mk 115include $(TMK_DIR)/protocol/lufa.mk
116include $(TOP_DIR)/common.mk 116include $(TMK_DIR)/common.mk
117include $(TOP_DIR)/rules.mk 117include $(TMK_DIR)/rules.mk
diff --git a/keyboard/hbkb/Makefile.lufa b/keyboard/hbkb/Makefile.lufa
index 0d103c876..47101ec09 100644
--- a/keyboard/hbkb/Makefile.lufa
+++ b/keyboard/hbkb/Makefile.lufa
@@ -42,7 +42,7 @@
42TARGET = hbkb_lufa 42TARGET = hbkb_lufa
43 43
44# Directory common source filess exist 44# Directory common source filess exist
45TOP_DIR = ../.. 45TMK_DIR = ../..
46 46
47# Directory keyboard dependent files exist 47# Directory keyboard dependent files exist
48TARGET_DIR = . 48TARGET_DIR = .
@@ -113,8 +113,8 @@ OPT_DEFS += -DBOOTLOADER_SIZE=4096
113 113
114# Search Path 114# Search Path
115VPATH += $(TARGET_DIR) 115VPATH += $(TARGET_DIR)
116VPATH += $(TOP_DIR) 116VPATH += $(TMK_DIR)
117 117
118include $(TOP_DIR)/protocol/lufa.mk 118include $(TMK_DIR)/protocol/lufa.mk
119include $(TOP_DIR)/common.mk 119include $(TMK_DIR)/common.mk
120include $(TOP_DIR)/rules.mk 120include $(TMK_DIR)/rules.mk
diff --git a/keyboard/hhkb/Makefile b/keyboard/hhkb/Makefile
index dc5c06a94..ea5a65ea2 100644
--- a/keyboard/hhkb/Makefile
+++ b/keyboard/hhkb/Makefile
@@ -42,7 +42,7 @@
42TARGET = hhkb_lufa 42TARGET = hhkb_lufa
43 43
44# Directory common source filess exist 44# Directory common source filess exist
45TOP_DIR = ../.. 45TMK_DIR = ../..
46 46
47# Directory keyboard dependent files exist 47# Directory keyboard dependent files exist
48TARGET_DIR = . 48TARGET_DIR = .
@@ -142,11 +142,11 @@ endif
142 142
143# Search Path 143# Search Path
144VPATH += $(TARGET_DIR) 144VPATH += $(TARGET_DIR)
145VPATH += $(TOP_DIR) 145VPATH += $(TMK_DIR)
146 146
147include $(TOP_DIR)/protocol/lufa.mk 147include $(TMK_DIR)/protocol/lufa.mk
148include $(TOP_DIR)/common.mk 148include $(TMK_DIR)/common.mk
149include $(TOP_DIR)/rules.mk 149include $(TMK_DIR)/rules.mk
150 150
151debug-on: EXTRAFLAGS += -DDEBUG -DDEBUG_ACTION 151debug-on: EXTRAFLAGS += -DDEBUG -DDEBUG_ACTION
152debug-on: all 152debug-on: all
diff --git a/keyboard/hhkb/Makefile.pjrc b/keyboard/hhkb/Makefile.pjrc
index b6ce9c750..53bb784cf 100644
--- a/keyboard/hhkb/Makefile.pjrc
+++ b/keyboard/hhkb/Makefile.pjrc
@@ -7,7 +7,7 @@
7TARGET = hhkb_pjrc 7TARGET = hhkb_pjrc
8 8
9# Directory common source filess exist 9# Directory common source filess exist
10TOP_DIR = ../.. 10TMK_DIR = ../..
11 11
12# Directory keyboard dependent files exist 12# Directory keyboard dependent files exist
13TARGET_DIR = . 13TARGET_DIR = .
@@ -61,8 +61,8 @@ PROGRAM_CMD = teensy_loader_cli -mmcu=$(MCU) -w -v $(TARGET).hex
61 61
62# Search Path 62# Search Path
63VPATH += $(TARGET_DIR) 63VPATH += $(TARGET_DIR)
64VPATH += $(TOP_DIR) 64VPATH += $(TMK_DIR)
65 65
66include $(TOP_DIR)/protocol/pjrc.mk 66include $(TMK_DIR)/protocol/pjrc.mk
67include $(TOP_DIR)/common.mk 67include $(TMK_DIR)/common.mk
68include $(TOP_DIR)/rules.mk 68include $(TMK_DIR)/rules.mk
diff --git a/keyboard/hhkb/Makefile.rn42 b/keyboard/hhkb/Makefile.rn42
index b1eacd070..66bdba917 100644
--- a/keyboard/hhkb/Makefile.rn42
+++ b/keyboard/hhkb/Makefile.rn42
@@ -42,7 +42,7 @@
42TARGET = hhkb_rn42 42TARGET = hhkb_rn42
43 43
44# Directory common source filess exist 44# Directory common source filess exist
45TOP_DIR = ../.. 45TMK_DIR = ../..
46 46
47# Directory keyboard dependent files exist 47# Directory keyboard dependent files exist
48TARGET_DIR = . 48TARGET_DIR = .
@@ -139,13 +139,13 @@ endif
139 139
140# Search Path 140# Search Path
141VPATH += $(TARGET_DIR) 141VPATH += $(TARGET_DIR)
142VPATH += $(TOP_DIR) 142VPATH += $(TMK_DIR)
143 143
144include rn42.mk 144include rn42.mk
145include $(TOP_DIR)/protocol.mk 145include $(TMK_DIR)/protocol.mk
146include $(TOP_DIR)/protocol/lufa.mk 146include $(TMK_DIR)/protocol/lufa.mk
147include $(TOP_DIR)/common.mk 147include $(TMK_DIR)/common.mk
148include $(TOP_DIR)/rules.mk 148include $(TMK_DIR)/rules.mk
149 149
150debug-on: EXTRAFLAGS += -DDEBUG -DDEBUG_ACTION 150debug-on: EXTRAFLAGS += -DDEBUG -DDEBUG_ACTION
151debug-on: all 151debug-on: all
diff --git a/keyboard/hhkb/not_supported/Makefile.iwrap b/keyboard/hhkb/not_supported/Makefile.iwrap
index 2d9d82c48..5bc94d5f6 100644
--- a/keyboard/hhkb/not_supported/Makefile.iwrap
+++ b/keyboard/hhkb/not_supported/Makefile.iwrap
@@ -7,7 +7,7 @@
7TARGET = hhkb_iwrap 7TARGET = hhkb_iwrap
8 8
9# Directory common source filess exist 9# Directory common source filess exist
10TOP_DIR = ../.. 10TMK_DIR = ../..
11 11
12# Directory keyboard dependent files exist 12# Directory keyboard dependent files exist
13TARGET_DIR = . 13TARGET_DIR = .
@@ -94,10 +94,10 @@ PROGRAM_CMD = $(AVRDUDE) $(AVRDUDE_FLAGS) $(AVRDUDE_WRITE_FLASH) $(AVRDUDE_WRITE
94 94
95# Search Path 95# Search Path
96VPATH += $(TARGET_DIR) 96VPATH += $(TARGET_DIR)
97VPATH += $(TOP_DIR) 97VPATH += $(TMK_DIR)
98 98
99include $(TOP_DIR)/protocol/iwrap.mk 99include $(TMK_DIR)/protocol/iwrap.mk
100# TODO: to be selectable: V-USB, LUFA or PJRC 100# TODO: to be selectable: V-USB, LUFA or PJRC
101#include $(TOP_DIR)/protocol/vusb.mk 101#include $(TMK_DIR)/protocol/vusb.mk
102include $(TOP_DIR)/common.mk 102include $(TMK_DIR)/common.mk
103include $(TOP_DIR)/rules.mk 103include $(TMK_DIR)/rules.mk
diff --git a/keyboard/hhkb/not_supported/Makefile.vusb b/keyboard/hhkb/not_supported/Makefile.vusb
index 4343b210d..61fd92889 100644
--- a/keyboard/hhkb/not_supported/Makefile.vusb
+++ b/keyboard/hhkb/not_supported/Makefile.vusb
@@ -7,7 +7,7 @@
7TARGET = hhkb_vusb 7TARGET = hhkb_vusb
8 8
9# Directory common source filess exist 9# Directory common source filess exist
10TOP_DIR = ../.. 10TMK_DIR = ../..
11 11
12# Directory keyboard dependent files exist 12# Directory keyboard dependent files exist
13TARGET_DIR = . 13TARGET_DIR = .
@@ -87,11 +87,11 @@ PROGRAM_CMD = $(AVRDUDE) $(AVRDUDE_FLAGS) $(AVRDUDE_WRITE_FLASH) $(AVRDUDE_WRITE
87 87
88# Search Path 88# Search Path
89VPATH += $(TARGET_DIR) 89VPATH += $(TARGET_DIR)
90VPATH += $(TOP_DIR) 90VPATH += $(TMK_DIR)
91 91
92include $(TOP_DIR)/protocol/vusb.mk 92include $(TMK_DIR)/protocol/vusb.mk
93include $(TOP_DIR)/common.mk 93include $(TMK_DIR)/common.mk
94include $(TOP_DIR)/rules.mk 94include $(TMK_DIR)/rules.mk
95 95
96debug-on: EXTRAFLAGS += -DDEBUG 96debug-on: EXTRAFLAGS += -DDEBUG
97debug-on: all 97debug-on: all
diff --git a/keyboard/hid_liber/Makefile.lufa b/keyboard/hid_liber/Makefile.lufa
index c99d1a32f..89c2d6fdf 100644
--- a/keyboard/hid_liber/Makefile.lufa
+++ b/keyboard/hid_liber/Makefile.lufa
@@ -42,7 +42,7 @@
42TARGET = hid_liber_lufa 42TARGET = hid_liber_lufa
43 43
44# Directory common source filess exist 44# Directory common source filess exist
45TOP_DIR = ../.. 45TMK_DIR = ../..
46 46
47# Directory keyboard dependent files exist 47# Directory keyboard dependent files exist
48TARGET_DIR = . 48TARGET_DIR = .
@@ -119,11 +119,11 @@ COMMAND_ENABLE = yes # Commands for debug and configuration
119 119
120# Search Path 120# Search Path
121VPATH += $(TARGET_DIR) 121VPATH += $(TARGET_DIR)
122VPATH += $(TOP_DIR) 122VPATH += $(TMK_DIR)
123 123
124include $(TOP_DIR)/protocol/lufa.mk 124include $(TMK_DIR)/protocol/lufa.mk
125include $(TOP_DIR)/common.mk 125include $(TMK_DIR)/common.mk
126include $(TOP_DIR)/rules.mk 126include $(TMK_DIR)/rules.mk
127 127
128ansi: OPT_DEFS += -DLAYOUT_ANSI 128ansi: OPT_DEFS += -DLAYOUT_ANSI
129ansi: all 129ansi: all
diff --git a/keyboard/hid_liber/Makefile.pjrc b/keyboard/hid_liber/Makefile.pjrc
index 42fb6895e..63d1fef72 100644
--- a/keyboard/hid_liber/Makefile.pjrc
+++ b/keyboard/hid_liber/Makefile.pjrc
@@ -42,7 +42,7 @@
42TARGET = hid_liber_pjrc 42TARGET = hid_liber_pjrc
43 43
44# Directory common source filess exist 44# Directory common source filess exist
45TOP_DIR = ../.. 45TMK_DIR = ../..
46 46
47# Directory keyboard dependent files exist 47# Directory keyboard dependent files exist
48TARGET_DIR = . 48TARGET_DIR = .
@@ -92,11 +92,11 @@ NKRO_ENABLE = yes # USB Nkey Rollover - not yet supported in LUFA
92 92
93# Search Path 93# Search Path
94VPATH += $(TARGET_DIR) 94VPATH += $(TARGET_DIR)
95VPATH += $(TOP_DIR) 95VPATH += $(TMK_DIR)
96 96
97include $(TOP_DIR)/protocol/pjrc.mk 97include $(TMK_DIR)/protocol/pjrc.mk
98include $(TOP_DIR)/common.mk 98include $(TMK_DIR)/common.mk
99include $(TOP_DIR)/rules.mk 99include $(TMK_DIR)/rules.mk
100 100
101ansi: OPT_DEFS += -DLAYOUT_ANSI 101ansi: OPT_DEFS += -DLAYOUT_ANSI
102ansi: all 102ansi: all
diff --git a/keyboard/kitten_paw/Makefile.lufa b/keyboard/kitten_paw/Makefile.lufa
index 4a643ea79..d793d9869 100644
--- a/keyboard/kitten_paw/Makefile.lufa
+++ b/keyboard/kitten_paw/Makefile.lufa
@@ -42,7 +42,7 @@
42TARGET = kittenpaw_lufa 42TARGET = kittenpaw_lufa
43 43
44# Directory common source filess exist 44# Directory common source filess exist
45TOP_DIR = ../.. 45TMK_DIR = ../..
46 46
47# Directory keyboard dependent files exist 47# Directory keyboard dependent files exist
48TARGET_DIR = . 48TARGET_DIR = .
@@ -110,8 +110,8 @@ OPT_DEFS += -DBOOTLOADER_SIZE=4096
110 110
111# Search Path 111# Search Path
112VPATH += $(TARGET_DIR) 112VPATH += $(TARGET_DIR)
113VPATH += $(TOP_DIR) 113VPATH += $(TMK_DIR)
114 114
115include $(TOP_DIR)/protocol/lufa.mk 115include $(TMK_DIR)/protocol/lufa.mk
116include $(TOP_DIR)/common.mk 116include $(TMK_DIR)/common.mk
117include $(TOP_DIR)/rules.mk 117include $(TMK_DIR)/rules.mk
diff --git a/keyboard/kmac/Makefile.lufa b/keyboard/kmac/Makefile.lufa
index 09343d4bc..fd0091aa3 100644
--- a/keyboard/kmac/Makefile.lufa
+++ b/keyboard/kmac/Makefile.lufa
@@ -42,7 +42,7 @@
42TARGET = kmac_lufa 42TARGET = kmac_lufa
43 43
44# Directory common source filess exist 44# Directory common source filess exist
45TOP_DIR = ../.. 45TMK_DIR = ../..
46 46
47# Directory keyboard dependent files exist 47# Directory keyboard dependent files exist
48TARGET_DIR = . 48TARGET_DIR = .
@@ -117,11 +117,11 @@ OPT_DEFS += -DBOOTLOADER_SIZE=4096
117 117
118# Search Path 118# Search Path
119VPATH += $(TARGET_DIR) 119VPATH += $(TARGET_DIR)
120VPATH += $(TOP_DIR) 120VPATH += $(TMK_DIR)
121 121
122include $(TOP_DIR)/protocol/lufa.mk 122include $(TMK_DIR)/protocol/lufa.mk
123include $(TOP_DIR)/common.mk 123include $(TMK_DIR)/common.mk
124include $(TOP_DIR)/rules.mk 124include $(TMK_DIR)/rules.mk
125 125
126winkey: OPT_DEFS += -DLAYOUT_WINKEY 126winkey: OPT_DEFS += -DLAYOUT_WINKEY
127winkey: all 127winkey: all
diff --git a/keyboard/kmac/Makefile.pjrc b/keyboard/kmac/Makefile.pjrc
index 22ee8de47..61c9c1530 100644
--- a/keyboard/kmac/Makefile.pjrc
+++ b/keyboard/kmac/Makefile.pjrc
@@ -42,7 +42,7 @@
42TARGET = kmac_pjrc 42TARGET = kmac_pjrc
43 43
44# Directory common source filess exist 44# Directory common source filess exist
45TOP_DIR = ../.. 45TMK_DIR = ../..
46 46
47# Directory keyboard dependent files exist 47# Directory keyboard dependent files exist
48TARGET_DIR = . 48TARGET_DIR = .
@@ -88,11 +88,11 @@ BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality
88 88
89# Search Path 89# Search Path
90VPATH += $(TARGET_DIR) 90VPATH += $(TARGET_DIR)
91VPATH += $(TOP_DIR) 91VPATH += $(TMK_DIR)
92 92
93include $(TOP_DIR)/protocol/pjrc.mk 93include $(TMK_DIR)/protocol/pjrc.mk
94include $(TOP_DIR)/common.mk 94include $(TMK_DIR)/common.mk
95include $(TOP_DIR)/rules.mk 95include $(TMK_DIR)/rules.mk
96 96
97winkey: OPT_DEFS += -DLAYOUT_WINKEY 97winkey: OPT_DEFS += -DLAYOUT_WINKEY
98winkey: all 98winkey: all
diff --git a/keyboard/lightpad/Makefile.lufa b/keyboard/lightpad/Makefile.lufa
index 7bce7ebff..b5240b2d5 100644
--- a/keyboard/lightpad/Makefile.lufa
+++ b/keyboard/lightpad/Makefile.lufa
@@ -42,7 +42,7 @@
42TARGET = lightpad_lufa 42TARGET = lightpad_lufa
43 43
44# Directory common source filess exist 44# Directory common source filess exist
45TOP_DIR = ../.. 45TMK_DIR = ../..
46 46
47# Directory keyboard dependent files exist 47# Directory keyboard dependent files exist
48TARGET_DIR = . 48TARGET_DIR = .
@@ -110,8 +110,8 @@ OPT_DEFS += -DBOOTLOADER_SIZE=4096
110 110
111# Search Path 111# Search Path
112VPATH += $(TARGET_DIR) 112VPATH += $(TARGET_DIR)
113VPATH += $(TOP_DIR) 113VPATH += $(TMK_DIR)
114 114
115include $(TOP_DIR)/protocol/lufa.mk 115include $(TMK_DIR)/protocol/lufa.mk
116include $(TOP_DIR)/common.mk 116include $(TMK_DIR)/common.mk
117include $(TOP_DIR)/rules.mk 117include $(TMK_DIR)/rules.mk
diff --git a/keyboard/lightsaber/Makefile.lufa b/keyboard/lightsaber/Makefile.lufa
index b430efd22..25cacacc4 100644
--- a/keyboard/lightsaber/Makefile.lufa
+++ b/keyboard/lightsaber/Makefile.lufa
@@ -42,7 +42,7 @@
42TARGET = lightsaber_lufa 42TARGET = lightsaber_lufa
43 43
44# Directory common source filess exist 44# Directory common source filess exist
45TOP_DIR = ../.. 45TMK_DIR = ../..
46 46
47# Directory keyboard dependent files exist 47# Directory keyboard dependent files exist
48TARGET_DIR = . 48TARGET_DIR = .
@@ -116,11 +116,11 @@ OPT_DEFS += -DBOOTLOADER_SIZE=4096
116 116
117# Search Path 117# Search Path
118VPATH += $(TARGET_DIR) 118VPATH += $(TARGET_DIR)
119VPATH += $(TOP_DIR) 119VPATH += $(TMK_DIR)
120 120
121include $(TOP_DIR)/protocol/lufa.mk 121include $(TMK_DIR)/protocol/lufa.mk
122include $(TOP_DIR)/common.mk 122include $(TMK_DIR)/common.mk
123include $(TOP_DIR)/rules.mk 123include $(TMK_DIR)/rules.mk
124 124
125winkey: OPT_DEFS += -DLAYOUT_WINKEY 125winkey: OPT_DEFS += -DLAYOUT_WINKEY
126winkey: all 126winkey: all
diff --git a/keyboard/lightsaber/Makefile.pjrc b/keyboard/lightsaber/Makefile.pjrc
index 58735a7ef..e5dec297c 100644
--- a/keyboard/lightsaber/Makefile.pjrc
+++ b/keyboard/lightsaber/Makefile.pjrc
@@ -42,7 +42,7 @@
42TARGET = lightsaber_pjrc 42TARGET = lightsaber_pjrc
43 43
44# Directory common source filess exist 44# Directory common source filess exist
45TOP_DIR = ../.. 45TMK_DIR = ../..
46 46
47# Directory keyboard dependent files exist 47# Directory keyboard dependent files exist
48TARGET_DIR = . 48TARGET_DIR = .
@@ -84,11 +84,11 @@ BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality
84 84
85# Search Path 85# Search Path
86VPATH += $(TARGET_DIR) 86VPATH += $(TARGET_DIR)
87VPATH += $(TOP_DIR) 87VPATH += $(TMK_DIR)
88 88
89include $(TOP_DIR)/protocol/pjrc.mk 89include $(TMK_DIR)/protocol/pjrc.mk
90include $(TOP_DIR)/common.mk 90include $(TMK_DIR)/common.mk
91include $(TOP_DIR)/rules.mk 91include $(TMK_DIR)/rules.mk
92 92
93winkey: OPT_DEFS += -DLAYOUT_WINKEY 93winkey: OPT_DEFS += -DLAYOUT_WINKEY
94winkey: all 94winkey: all
diff --git a/keyboard/macway/Makefile.lufa b/keyboard/macway/Makefile.lufa
index 359a8c246..8f216e726 100644
--- a/keyboard/macway/Makefile.lufa
+++ b/keyboard/macway/Makefile.lufa
@@ -42,7 +42,7 @@
42TARGET = macway_lufa 42TARGET = macway_lufa
43 43
44# Directory common source filess exist 44# Directory common source filess exist
45TOP_DIR = ../.. 45TMK_DIR = ../..
46 46
47# Directory keyboard dependent files exist 47# Directory keyboard dependent files exist
48TARGET_DIR = . 48TARGET_DIR = .
@@ -114,8 +114,8 @@ COMMAND_ENABLE = yes # Commands for debug and configuration
114 114
115# Search Path 115# Search Path
116VPATH += $(TARGET_DIR) 116VPATH += $(TARGET_DIR)
117VPATH += $(TOP_DIR) 117VPATH += $(TMK_DIR)
118 118
119include $(TOP_DIR)/protocol/lufa.mk 119include $(TMK_DIR)/protocol/lufa.mk
120include $(TOP_DIR)/common.mk 120include $(TMK_DIR)/common.mk
121include $(TOP_DIR)/rules.mk 121include $(TMK_DIR)/rules.mk
diff --git a/keyboard/macway/Makefile.pjrc b/keyboard/macway/Makefile.pjrc
index 9e84a3418..3d67b1b7d 100644
--- a/keyboard/macway/Makefile.pjrc
+++ b/keyboard/macway/Makefile.pjrc
@@ -42,7 +42,7 @@
42TARGET = macway_pjrc 42TARGET = macway_pjrc
43 43
44# Directory common source filess exist 44# Directory common source filess exist
45TOP_DIR = ../.. 45TMK_DIR = ../..
46 46
47# Directory keyboard dependent files exist 47# Directory keyboard dependent files exist
48TARGET_DIR = . 48TARGET_DIR = .
@@ -90,8 +90,8 @@ PROGRAM_CMD = teensy_loader_cli -mmcu=$(MCU) -w -v $(TARGET).hex
90 90
91# Search Path 91# Search Path
92VPATH += $(TARGET_DIR) 92VPATH += $(TARGET_DIR)
93VPATH += $(TOP_DIR) 93VPATH += $(TMK_DIR)
94 94
95include $(TOP_DIR)/protocol/pjrc.mk 95include $(TMK_DIR)/protocol/pjrc.mk
96include $(TOP_DIR)/common.mk 96include $(TMK_DIR)/common.mk
97include $(TOP_DIR)/rules.mk 97include $(TMK_DIR)/rules.mk
diff --git a/keyboard/nerd/Makefile b/keyboard/nerd/Makefile
index 5fd382841..554fc8b3f 100644
--- a/keyboard/nerd/Makefile
+++ b/keyboard/nerd/Makefile
@@ -42,7 +42,7 @@
42TARGET = nerd_lufa 42TARGET = nerd_lufa
43 43
44# Directory common source filess exist 44# Directory common source filess exist
45TOP_DIR = ../.. 45TMK_DIR = ../..
46 46
47# Directory keyboard dependent files exist 47# Directory keyboard dependent files exist
48TARGET_DIR = . 48TARGET_DIR = .
@@ -119,8 +119,8 @@ BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality
119 119
120# Search Path 120# Search Path
121VPATH += $(TARGET_DIR) 121VPATH += $(TARGET_DIR)
122VPATH += $(TOP_DIR) 122VPATH += $(TMK_DIR)
123 123
124include $(TOP_DIR)/protocol/lufa.mk 124include $(TMK_DIR)/protocol/lufa.mk
125include $(TOP_DIR)/common.mk 125include $(TMK_DIR)/common.mk
126include $(TOP_DIR)/rules.mk 126include $(TMK_DIR)/rules.mk
diff --git a/keyboard/onekey/Makefile b/keyboard/onekey/Makefile
index 78732e470..54a2d486f 100644
--- a/keyboard/onekey/Makefile
+++ b/keyboard/onekey/Makefile
@@ -42,7 +42,7 @@
42TARGET = onekey_lufa 42TARGET = onekey_lufa
43 43
44# Directory common source filess exist 44# Directory common source filess exist
45TOP_DIR = ../.. 45TMK_DIR = ../..
46 46
47# Directory keyboard dependent files exist 47# Directory keyboard dependent files exist
48TARGET_DIR = . 48TARGET_DIR = .
@@ -124,9 +124,9 @@ CONSOLE_ENABLE = yes # Console for debug(+400)
124 124
125# Search Path 125# Search Path
126VPATH += $(TARGET_DIR) 126VPATH += $(TARGET_DIR)
127VPATH += $(TOP_DIR) 127VPATH += $(TMK_DIR)
128 128
129include $(TOP_DIR)/common.mk 129include $(TMK_DIR)/common.mk
130include $(TOP_DIR)/protocol.mk 130include $(TMK_DIR)/protocol.mk
131include $(TOP_DIR)/protocol/lufa.mk 131include $(TMK_DIR)/protocol/lufa.mk
132include $(TOP_DIR)/rules.mk 132include $(TMK_DIR)/rules.mk
diff --git a/keyboard/onekey/Makefile.pjrc b/keyboard/onekey/Makefile.pjrc
index 24ade3350..e4ca0783a 100644
--- a/keyboard/onekey/Makefile.pjrc
+++ b/keyboard/onekey/Makefile.pjrc
@@ -42,7 +42,7 @@
42TARGET = onekey_pjrc 42TARGET = onekey_pjrc
43 43
44# Directory common source filess exist 44# Directory common source filess exist
45TOP_DIR = ../.. 45TMK_DIR = ../..
46 46
47# Directory keyboard dependent files exist 47# Directory keyboard dependent files exist
48TARGET_DIR = . 48TARGET_DIR = .
@@ -95,9 +95,9 @@ PS2_USE_BUSYWAIT = yes # uses primitive reference code
95 95
96# Search Path 96# Search Path
97VPATH += $(TARGET_DIR) 97VPATH += $(TARGET_DIR)
98VPATH += $(TOP_DIR) 98VPATH += $(TMK_DIR)
99 99
100include $(TOP_DIR)/common.mk 100include $(TMK_DIR)/common.mk
101include $(TOP_DIR)/protocol.mk 101include $(TMK_DIR)/protocol.mk
102include $(TOP_DIR)/protocol/pjrc.mk 102include $(TMK_DIR)/protocol/pjrc.mk
103include $(TOP_DIR)/rules.mk 103include $(TMK_DIR)/rules.mk
diff --git a/keyboard/phantom/Makefile.lufa b/keyboard/phantom/Makefile.lufa
index 97756de0a..55d155b15 100644
--- a/keyboard/phantom/Makefile.lufa
+++ b/keyboard/phantom/Makefile.lufa
@@ -42,7 +42,7 @@
42TARGET = phantom_lufa 42TARGET = phantom_lufa
43 43
44# Directory common source filess exist 44# Directory common source filess exist
45TOP_DIR = ../.. 45TMK_DIR = ../..
46 46
47# Directory keyboard dependent files exist 47# Directory keyboard dependent files exist
48TARGET_DIR = . 48TARGET_DIR = .
@@ -115,11 +115,11 @@ OPT_DEFS += -DBOOTLOADER_SIZE=512
115 115
116# Search Path 116# Search Path
117VPATH += $(TARGET_DIR) 117VPATH += $(TARGET_DIR)
118VPATH += $(TOP_DIR) 118VPATH += $(TMK_DIR)
119 119
120include $(TOP_DIR)/protocol/lufa.mk 120include $(TMK_DIR)/protocol/lufa.mk
121include $(TOP_DIR)/common.mk 121include $(TMK_DIR)/common.mk
122include $(TOP_DIR)/rules.mk 122include $(TMK_DIR)/rules.mk
123 123
124ansi: OPT_DEFS += -DLAYOUT_ANSI 124ansi: OPT_DEFS += -DLAYOUT_ANSI
125ansi: all 125ansi: all
diff --git a/keyboard/phantom/Makefile.pjrc b/keyboard/phantom/Makefile.pjrc
index aa01ac5ab..bc57af6a5 100644
--- a/keyboard/phantom/Makefile.pjrc
+++ b/keyboard/phantom/Makefile.pjrc
@@ -42,7 +42,7 @@
42TARGET = phantom_pjrc 42TARGET = phantom_pjrc
43 43
44# Directory common source filess exist 44# Directory common source filess exist
45TOP_DIR = ../.. 45TMK_DIR = ../..
46 46
47# Directory keyboard dependent files exist 47# Directory keyboard dependent files exist
48TARGET_DIR = . 48TARGET_DIR = .
@@ -86,11 +86,11 @@ COMMAND_ENABLE = yes # Commands for debug and configuration
86 86
87# Search Path 87# Search Path
88VPATH += $(TARGET_DIR) 88VPATH += $(TARGET_DIR)
89VPATH += $(TOP_DIR) 89VPATH += $(TMK_DIR)
90 90
91include $(TOP_DIR)/protocol/pjrc.mk 91include $(TMK_DIR)/protocol/pjrc.mk
92include $(TOP_DIR)/common.mk 92include $(TMK_DIR)/common.mk
93include $(TOP_DIR)/rules.mk 93include $(TMK_DIR)/rules.mk
94 94
95ansi: OPT_DEFS += -DLAYOUT_ANSI 95ansi: OPT_DEFS += -DLAYOUT_ANSI
96ansi: all 96ansi: all
diff --git a/protocol.mk b/protocol.mk
index d9194b2bf..726f658a0 100644
--- a/protocol.mk
+++ b/protocol.mk
@@ -47,4 +47,4 @@ ifdef SERIAL_MOUSE_USE_UART
47endif 47endif
48 48
49# Search Path 49# Search Path
50VPATH += $(TOP_DIR)/protocol 50VPATH += $(TMK_DIR)/protocol
diff --git a/protocol/bluefruit.mk b/protocol/bluefruit.mk
index 7e6328f6c..e1c5fff77 100644
--- a/protocol/bluefruit.mk
+++ b/protocol/bluefruit.mk
@@ -19,9 +19,9 @@ ifdef EXTRAKEY_ENABLE
19endif 19endif
20 20
21# Search Path 21# Search Path
22VPATH += $(TOP_DIR)/$(BLUEFRUIT_DIR) 22VPATH += $(TMK_DIR)/$(BLUEFRUIT_DIR)
23#VPATH += $(TOP_DIR)/$(BLUEFRUIT_DIR)/usb_debug_only 23#VPATH += $(TMK_DIR)/$(BLUEFRUIT_DIR)/usb_debug_only
24VPATH += $(TOP_DIR)/$(PJRC_DIR) 24VPATH += $(TMK_DIR)/$(PJRC_DIR)
25 25
26OPT_DEFS += -DPROTOCOL_BLUEFRUIT 26OPT_DEFS += -DPROTOCOL_BLUEFRUIT
27OPT_DEFS += -DPROTOCOL_PJRC 27OPT_DEFS += -DPROTOCOL_PJRC
diff --git a/protocol/iwrap.mk b/protocol/iwrap.mk
index 3b63efe9a..eeedd83af 100644
--- a/protocol/iwrap.mk
+++ b/protocol/iwrap.mk
@@ -9,7 +9,7 @@ SRC += $(IWRAP_DIR)/main.c \
9 $(COMMON_DIR)/uart.c 9 $(COMMON_DIR)/uart.c
10 10
11# Search Path 11# Search Path
12VPATH += $(TOP_DIR)/protocol/iwrap 12VPATH += $(TMK_DIR)/protocol/iwrap
13 13
14 14
15# TODO: compatible with LUFA and PJRC 15# TODO: compatible with LUFA and PJRC
@@ -21,6 +21,6 @@ SRC += $(VUSB_DIR)/vusb.c \
21 $(VUSB_DIR)/usbdrv/usbdrv.c \ 21 $(VUSB_DIR)/usbdrv/usbdrv.c \
22 $(VUSB_DIR)/usbdrv/usbdrvasm.S \ 22 $(VUSB_DIR)/usbdrv/usbdrvasm.S \
23 $(VUSB_DIR)/usbdrv/oddebug.c 23 $(VUSB_DIR)/usbdrv/oddebug.c
24VPATH += $(TOP_DIR)/protocol/vusb:$(TOP_DIR)/protocol/vusb/usbdrv 24VPATH += $(TMK_DIR)/protocol/vusb:$(TMK_DIR)/protocol/vusb/usbdrv
25 25
26 26
diff --git a/protocol/lufa.mk b/protocol/lufa.mk
index ac70ac039..2575e89df 100644
--- a/protocol/lufa.mk
+++ b/protocol/lufa.mk
@@ -1,7 +1,7 @@
1LUFA_DIR = protocol/lufa 1LUFA_DIR = protocol/lufa
2 2
3# Path to the LUFA library 3# Path to the LUFA library
4ifeq (, $(wildcard $(TOP_DIR)/$(LUFA_DIR)/LUFA-git/LUFA/Version.h)) 4ifeq (, $(wildcard $(TMK_DIR)/$(LUFA_DIR)/LUFA-git/LUFA/Version.h))
5 LUFA_PATH ?= $(LUFA_DIR)/LUFA-120730 5 LUFA_PATH ?= $(LUFA_DIR)/LUFA-120730
6else 6else
7 LUFA_PATH ?= $(LUFA_DIR)/LUFA-git 7 LUFA_PATH ?= $(LUFA_DIR)/LUFA-git
@@ -9,12 +9,12 @@ endif
9 9
10 10
11# Create the LUFA source path variables by including the LUFA makefile 11# Create the LUFA source path variables by including the LUFA makefile
12ifneq (, $(wildcard $(TOP_DIR)/$(LUFA_PATH)/LUFA/Build/lufa_sources.mk)) 12ifneq (, $(wildcard $(TMK_DIR)/$(LUFA_PATH)/LUFA/Build/lufa_sources.mk))
13 # New build system from 20120730 13 # New build system from 20120730
14 LUFA_ROOT_PATH = $(LUFA_PATH)/LUFA 14 LUFA_ROOT_PATH = $(LUFA_PATH)/LUFA
15 include $(TOP_DIR)/$(LUFA_PATH)/LUFA/Build/lufa_sources.mk 15 include $(TMK_DIR)/$(LUFA_PATH)/LUFA/Build/lufa_sources.mk
16else 16else
17 include $(TOP_DIR)/$(LUFA_PATH)/LUFA/makefile 17 include $(TMK_DIR)/$(LUFA_PATH)/LUFA/makefile
18endif 18endif
19 19
20LUFA_SRC = $(LUFA_DIR)/lufa.c \ 20LUFA_SRC = $(LUFA_DIR)/lufa.c \
@@ -24,8 +24,8 @@ LUFA_SRC = $(LUFA_DIR)/lufa.c \
24SRC += $(LUFA_SRC) 24SRC += $(LUFA_SRC)
25 25
26# Search Path 26# Search Path
27VPATH += $(TOP_DIR)/$(LUFA_DIR) 27VPATH += $(TMK_DIR)/$(LUFA_DIR)
28VPATH += $(TOP_DIR)/$(LUFA_PATH) 28VPATH += $(TMK_DIR)/$(LUFA_PATH)
29 29
30# Option modules 30# Option modules
31#ifdef $(or MOUSEKEY_ENABLE, PS2_MOUSE_ENABLE) 31#ifdef $(or MOUSEKEY_ENABLE, PS2_MOUSE_ENABLE)
diff --git a/protocol/pjrc.mk b/protocol/pjrc.mk
index 5a4461382..36585de7d 100644
--- a/protocol/pjrc.mk
+++ b/protocol/pjrc.mk
@@ -20,7 +20,7 @@ ifdef EXTRAKEY_ENABLE
20endif 20endif
21 21
22# Search Path 22# Search Path
23VPATH += $(TOP_DIR)/$(PJRC_DIR) 23VPATH += $(TMK_DIR)/$(PJRC_DIR)
24 24
25# This indicates using LUFA stack 25# This indicates using LUFA stack
26OPT_DEFS += -DPROTOCOL_PJRC 26OPT_DEFS += -DPROTOCOL_PJRC
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
58# 58#
59# Search Path 59# Search Path
60# 60#
61VPATH += $(TOP_DIR)/$(USB_HID_DIR) 61VPATH += $(TMK_DIR)/$(USB_HID_DIR)
62VPATH += $(TOP_DIR)/$(USB_HOST_SHIELD_DIR) 62VPATH += $(TMK_DIR)/$(USB_HOST_SHIELD_DIR)
63 63
64# for #include "Arduino.h" 64# for #include "Arduino.h"
65VPATH += $(TOP_DIR)/$(ARDUINO_CORES_DIR) 65VPATH += $(TMK_DIR)/$(ARDUINO_CORES_DIR)
66 66
67# for #include "pins_arduino.h" 67# for #include "pins_arduino.h"
68VPATH += $(TOP_DIR)/$(ARDUINO_DIR)/variants/leonardo 68VPATH += $(TMK_DIR)/$(ARDUINO_DIR)/variants/leonardo
69 69
70# ad hoc workaround for compile problem on Windows: 70# ad hoc workaround for compile problem on Windows:
71# Windows doesn't know difference between common/print.h and arduino/Print.h. 71# Windows doesn't know difference between common/print.h and arduino/Print.h.
72# On Linux no problem. 72# On Linux no problem.
73# Change file name common/print.h to console.h ? 73# Change file name common/print.h to console.h ?
74VPATH := $(TOP_DIR)/common $(VPATH) 74VPATH := $(TMK_DIR)/common $(VPATH)
diff --git a/protocol/usb_hid/test/Makefile b/protocol/usb_hid/test/Makefile
index 39f5de455..83bf2aed6 100644
--- a/protocol/usb_hid/test/Makefile
+++ b/protocol/usb_hid/test/Makefile
@@ -41,7 +41,7 @@
41# Target file name (without extension). 41# Target file name (without extension).
42TARGET = usb_hid_test 42TARGET = usb_hid_test
43 43
44TOP_DIR = ../../.. 44TMK_DIR = ../../..
45 45
46# Directory keyboard dependent files exist 46# Directory keyboard dependent files exist
47TARGET_DIR = . 47TARGET_DIR = .
@@ -111,8 +111,8 @@ CONFIG_H = config.h
111 111
112# Search Path 112# Search Path
113VPATH += $(TARGET_DIR) 113VPATH += $(TARGET_DIR)
114VPATH += $(TOP_DIR) 114VPATH += $(TMK_DIR)
115VPATH += $(TOP_DIR)/common 115VPATH += $(TMK_DIR)/common
116 116
117 117
118 118
@@ -121,6 +121,6 @@ PROGRAM_CMD = avrdude -p$(MCU) -cavr109 -P$(DEV) -b57600 -Uflash:w:$(TARGET).hex
121 121
122 122
123 123
124include $(TOP_DIR)/protocol/usb_hid.mk 124include $(TMK_DIR)/protocol/usb_hid.mk
125include $(TOP_DIR)/protocol/lufa.mk 125include $(TMK_DIR)/protocol/lufa.mk
126include $(TOP_DIR)/rules.mk 126include $(TMK_DIR)/rules.mk
diff --git a/protocol/vusb.mk b/protocol/vusb.mk
index 3227ca7bf..3cba3f71a 100644
--- a/protocol/vusb.mk
+++ b/protocol/vusb.mk
@@ -18,4 +18,4 @@ endif
18 18
19 19
20# Search Path 20# Search Path
21VPATH += $(TOP_DIR)/protocol/vusb:$(TOP_DIR)/protocol/vusb/usbdrv 21VPATH += $(TMK_DIR)/protocol/vusb:$(TMK_DIR)/protocol/vusb/usbdrv
diff --git a/tool/mbed/common.mk b/tool/mbed/common.mk
index 403da9ac8..77bf7c3e4 100644
--- a/tool/mbed/common.mk
+++ b/tool/mbed/common.mk
@@ -77,5 +77,5 @@ endif
77ifdef KEYMAP_SECTION_ENABLE 77ifdef KEYMAP_SECTION_ENABLE
78 $(error Not Supported) 78 $(error Not Supported)
79 OPT_DEFS += -DKEYMAP_SECTION_ENABLE 79 OPT_DEFS += -DKEYMAP_SECTION_ENABLE
80 EXTRALDFLAGS = -Wl,-L$(TOP_DIR),-Tldscript_keymap_avr5.x 80 EXTRALDFLAGS = -Wl,-L$(TMK_DIR),-Tldscript_keymap_avr5.x
81endif 81endif