diff options
author | Jack Humbert <jack.humb@gmail.com> | 2017-10-21 11:44:11 -1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-10-21 11:44:11 -1000 |
commit | 06f196c589b3c8c70c6cda6e95db6d1a2bf6e80b (patch) | |
tree | a346452e61bf8047d18c9a6d4863cc4ac63a5717 /build_keyboard.mk | |
parent | 9bb259b660925c7a5cd64b3a0a4484cdf757b504 (diff) | |
download | qmk_firmware-06f196c589b3c8c70c6cda6e95db6d1a2bf6e80b.tar.gz qmk_firmware-06f196c589b3c8c70c6cda6e95db6d1a2bf6e80b.zip |
Creates a userspace for keymaps (#1559)
* create a user space
* adds example
* document, add readme.md
* jackhumbert userspace, ergodox keymap
Diffstat (limited to 'build_keyboard.mk')
-rw-r--r-- | build_keyboard.mk | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/build_keyboard.mk b/build_keyboard.mk index 450207850..2c86fe55e 100644 --- a/build_keyboard.mk +++ b/build_keyboard.mk | |||
@@ -183,6 +183,10 @@ else | |||
183 | # this state should never be reached | 183 | # this state should never be reached |
184 | endif | 184 | endif |
185 | 185 | ||
186 | # User space stuff | ||
187 | USER_PATH := users/$(KEYMAP) | ||
188 | -include $(USER_PATH)/rules.mk | ||
189 | |||
186 | # Object files directory | 190 | # Object files directory |
187 | # To put object files in current directory, use a dot (.), do NOT make | 191 | # To put object files in current directory, use a dot (.), do NOT make |
188 | # this an empty or blank macro! | 192 | # this an empty or blank macro! |
@@ -204,6 +208,7 @@ SRC += $(KEYBOARD_SRC) \ | |||
204 | VPATH += $(KEYMAP_PATH) | 208 | VPATH += $(KEYMAP_PATH) |
205 | VPATH += $(KEYBOARD_PATHS) | 209 | VPATH += $(KEYBOARD_PATHS) |
206 | VPATH += $(COMMON_VPATH) | 210 | VPATH += $(COMMON_VPATH) |
211 | VPATH += $(USER_PATH) | ||
207 | 212 | ||
208 | include common_features.mk | 213 | include common_features.mk |
209 | include $(TMK_PATH)/protocol.mk | 214 | include $(TMK_PATH)/protocol.mk |