diff options
author | Erez Zukerman <bulk@ezuk.org> | 2016-07-29 08:11:37 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-07-29 08:11:37 -0400 |
commit | 30003d48f9a04676b81bf2980a235106ec7886b0 (patch) | |
tree | 20c5a335aa556922d26a41f835b7f82a22c3133a /keyboards/ergodox_ez/keymaps/algernon/Makefile | |
parent | 64e76f6ed34699400fa856c5013bb16b2782992a (diff) | |
parent | f82437f08eb24c549c8e2ec15d466d6d303f93d8 (diff) |
Merge pull request #584 from algernon/ergodox-ez/algernon
ergodox_ez: Upgrade my keymap to v1.4
Diffstat (limited to 'keyboards/ergodox_ez/keymaps/algernon/Makefile')
-rw-r--r-- | keyboards/ergodox_ez/keymaps/algernon/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/keyboards/ergodox_ez/keymaps/algernon/Makefile b/keyboards/ergodox_ez/keymaps/algernon/Makefile index 005f9750c3..6bf3976b9d 100644 --- a/keyboards/ergodox_ez/keymaps/algernon/Makefile +++ b/keyboards/ergodox_ez/keymaps/algernon/Makefile @@ -4,13 +4,19 @@ SLEEP_LED_ENABLE=no UNICODE_ENABLE=no FORCE_NKRO ?= yes DEBUG_ENABLE = no -CONSOLE_ENABLE = yes +CONSOLE_ENABLE = no TAP_DANCE_ENABLE = yes +KEYLOGGER_ENABLE ?= yes ifeq (${FORCE_NKRO},yes) OPT_DEFS += -DFORCE_NKRO endif +ifeq (${KEYLOGGER_ENABLE},yes) +OPT_DEFS += -DKEYLOGGER_ENABLE +CONSOLE_ENABLE = yes +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; \ |