diff options
author | Toni <jeder@mail1a.de> | 2016-08-13 09:24:24 +0200 |
---|---|---|
committer | Toni <jeder@mail1a.de> | 2016-08-13 09:24:24 +0200 |
commit | e0aa2169055f554a3cb87208b1e73a6b2707405b (patch) | |
tree | 6c74a1f7284f385b99a231ef0c1c805fab1083e5 /keyboards/ergodox/keymaps/algernon/Makefile | |
parent | cafa528b88c097f02ae92a5b15b015f5653cefe7 (diff) | |
parent | 098951905d527c19043de75ef262ac9679ec452b (diff) |
Merge remote-tracking branch 'origin/master' into iso_split_rshift
update from Upstream
Diffstat (limited to 'keyboards/ergodox/keymaps/algernon/Makefile')
-rw-r--r-- | keyboards/ergodox/keymaps/algernon/Makefile | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/keyboards/ergodox/keymaps/algernon/Makefile b/keyboards/ergodox/keymaps/algernon/Makefile new file mode 100644 index 0000000000..6bf3976b9d --- /dev/null +++ b/keyboards/ergodox/keymaps/algernon/Makefile @@ -0,0 +1,35 @@ +BOOTMAGIC_ENABLE=no +COMMAND_ENABLE=no +SLEEP_LED_ENABLE=no +UNICODE_ENABLE=no +FORCE_NKRO ?= yes +DEBUG_ENABLE = no +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; \ + 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 +endif |