forked from mirrors/qmk_firmware
4c6ce12d2a
* Fixed Left Shift tapdance in general and for gaming mode. (#12) * update ISO readme * left shift fixed in general, including for gaming mode * fixed toggle menu rendering on ISO layouts * updated readme's and cosmetics * update readme's * update readme's again * readme cosmetics * consolidate readme's * more readme cosmetics * clarification for bootloader mode on ISO * Autocorrect added with 400 word English dictionary (#13) * autocorrect added with 400 word dictionary * update readme's for autocorrect * Add FN-B as shortcut to bootloader * Update .gitignore Co-authored-by: Joel Challis <git@zvecr.com> * RGB changes to system numlock and ISO extended alphas - hide system numlock off indicator (primarily for Mac users) by moving it to numpad and FN layers instead - give users with extended alpha ISO languages a config option to add RGB highlights for extras alphas on capslock * readme updates * Fixed [FN]B and [FN]N shortcuts not working on numpad layer Co-authored-by: Joel Challis <git@zvecr.com>
31 lines
888 B
Makefile
31 lines
888 B
Makefile
SRC += gourdo1.c
|
|
SRC += autocorrect/autocorrection.c
|
|
|
|
ifdef ENCODER_ENABLE
|
|
# include encoder related code when enabled
|
|
ifeq ($(strip $(ENCODER_DEFAULTACTIONS_ENABLE)), yes)
|
|
OPT_DEFS += -DENCODER_DEFAULTACTIONS_ENABLE
|
|
endif
|
|
ifeq ($(strip $(ALTTAB_SCROLL_ENABLE)), yes)
|
|
OPT_DEFS += -DALTTAB_SCROLL_ENABLE
|
|
endif
|
|
SRC += gourdo1_encoder.c
|
|
endif
|
|
ifeq ($(strip $(TD_LSFT_CAPSLOCK_ENABLE)), yes)
|
|
OPT_DEFS += -DTD_LSFT_CAPSLOCK_ENABLE
|
|
endif
|
|
ifeq ($(strip $(IDLE_TIMEOUT_ENABLE)), yes)
|
|
OPT_DEFS += -DIDLE_TIMEOUT_ENABLE
|
|
endif
|
|
ifeq ($(strip $(STARTUP_NUMLOCK_ON)), yes)
|
|
OPT_DEFS += -DSTARTUP_NUMLOCK_ON
|
|
endif
|
|
ifeq ($(strip $(COLEMAK_LAYER_ENABLE)), yes)
|
|
OPT_DEFS += -DCOLEMAK_LAYER_ENABLE
|
|
endif
|
|
ifeq ($(strip $(EMOTICON_ENABLE)), yes)
|
|
OPT_DEFS += -DEMOTICON_ENABLE
|
|
endif
|
|
ifeq ($(strip $(INVERT_NUMLOCK_INDICATOR)), yes)
|
|
OPT_DEFS += -DINVERT_NUMLOCK_INDICATOR
|
|
endif
|