diff options
author | Erez Zukerman <bulk@ezuk.org> | 2016-06-22 09:01:51 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-06-22 09:01:51 -0400 |
commit | 8c1bfdf0bd9aae13d8722fd107deca40ffc7932c (patch) | |
tree | 0eba6a7ccd873cbfbc75e2fa3ebc34041eb17140 /keyboards/ergodox_ez/keymaps/algernon/Makefile | |
parent | 98f0807359cfa78d25442b91ff4c5bbfc5679661 (diff) | |
parent | 2278956412ca7f970dc4d38a6c32d7b5301f9a90 (diff) |
Merge pull request #433 from algernon/ergodox-ez/algernon
ergodox_ez: Update the algernon keymap to v1.2
Diffstat (limited to 'keyboards/ergodox_ez/keymaps/algernon/Makefile')
-rw-r--r-- | keyboards/ergodox_ez/keymaps/algernon/Makefile | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/keyboards/ergodox_ez/keymaps/algernon/Makefile b/keyboards/ergodox_ez/keymaps/algernon/Makefile index 3db507c8f2..cd7e9e9d2a 100644 --- a/keyboards/ergodox_ez/keymaps/algernon/Makefile +++ b/keyboards/ergodox_ez/keymaps/algernon/Makefile @@ -2,6 +2,24 @@ BOOTMAGIC_ENABLE=no COMMAND_ENABLE=no SLEEP_LED_ENABLE=no UNICODE_ENABLE=no +FORCE_NKRO ?= yes + +ifeq (${FORCE_NKRO},yes) +OPT_DEFS += -DFORCE_NKRO +endif + +KEYMAP_VERSION = $(shell \ + if [ -d "${KEYMAP_PATH}/.git" ]; then \ + cd "${KEYMAP_PATH}" && git describe --abbrev=6 --dirty --always --tags --match 'v*' 2>/dev/null; \ + else echo QMK; fi) + +KEYMAP_BRANCH = $(shell \ + if [ -d "${KEYMAP_PATH}/.git" ]; then \ + cd "${KEYMAP_PATH}"; \ + fi; \ + git rev-parse --abbrev-ref HEAD 2>/dev/null) + +OPT_DEFS += -DKEYMAP_VERSION=\"$(KEYMAP_VERSION)\\\#$(KEYMAP_BRANCH)\" ifndef QUANTUM_DIR include ../../../../Makefile |