forked from forks/qmk_firmware
b98d47abe5
Major changes include: * The **1HAND** layer has been removed. * A `Delete` key is now available on the right thumb cluster. * The **ADORE** layer received a major update, see the updated layout image. * It is now possible to enable automatic logging for the **ADORE** layer, by setting the `ADORE_AUTOLOG` makefile variable to `yes` when compiling the keymap. It is off by default. * The `~` key and the `Media Next/Prev` key have been swapped on the **base** layer. * On the **ARROW** layer, `Backspace` has been replaced by `Enter`. * There is some experimental support for entering Unicode symbols. Signed-off-by: Gergely Nagy <algernon@madhouse-project.org>
43 lines
897 B
Makefile
43 lines
897 B
Makefile
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
|
|
|
|
ADORE_AUTOLOG ?= no
|
|
|
|
ifeq (${FORCE_NKRO},yes)
|
|
OPT_DEFS += -DFORCE_NKRO
|
|
endif
|
|
|
|
ifeq (${ADORE_AUTOLOG},yes)
|
|
KEYLOGGER_ENABLE = yes
|
|
OPT_DEFS += -DADORE_AUTOLOG
|
|
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
|