7ce5402417
* Minor Tweak * Refactor spacebar defines. * Add TMO50 layout * Rename Atreus keymap. * Refactor Atreus for readability. * Eliminate tapdance quote and tweak maltroff. * Factor out tapdance. * Add some fancy combos and keys. * Remove combos for now because they cause pain. * WIP visualizer * Alternate method for reset * WIP2 visualizer * Layer text tweak. * Add made-up layout Nortron as a combination of Norman and Maltron. * Add backspace. * Add Talljoe keymap to Prime E. * Fix double-colon so it doesn't press enter if shift is released early. * Use new make command. * Bring some modern standards into code and add licenses. * Remove QMK_KEYBOARD_CONFIG_H and fixup QMK_KEYBOARD_H. * Move from `biton32` to `get_highest_layer`. * Remove PREVENT_STUCK_MODIFIERS * Update keyboards/thevankeyboards/minivan/keymaps/talljoe-minivan/config.h
16 lines
342 B
Makefile
16 lines
342 B
Makefile
SRC += talljoe.c macros.c $(wildcard users/talljoe/tapdance/*.c)
|
|
ifeq ($(strip $(VISUALIZER_ENABLE)), yes)
|
|
SRC += visualizer.c
|
|
endif
|
|
|
|
ifeq ($(strip $(FLASH_BOOTLOADER)), yes)
|
|
OPT_DEFS += -DFLASH_BOOTLOADER
|
|
endif
|
|
|
|
EXTRAFLAGS+=-flto
|
|
|
|
TAP_DANCE_ENABLE=yes
|
|
CONSOLE_ENABLE=no
|
|
COMMAND_ENABLE=no
|
|
DYNAMIC_KEYMAP_ENABLE=no
|
|
BOOTMAGIC_ENABLE=full
|