83fa6fe916
* Added GMMK PRO Rev2 WBG7 MCU compatibility. Added GMMK 2 WBG7 MCU compatibility. * GMMK PRO MCU Updates only (removed other kbs) * fix problems * Optimize the code. * Update form develop branch * Update * Updater from qmk/develop * Update * Update config.h * Update config.h * Remove gmmk pro rev2 * move moults31/keymap.c * Update * tidy up Co-authored-by: Joy <chang.li@westberrytech.com> Co-authored-by: zvecr <git@zvecr.com>
25 lines
413 B
Makefile
25 lines
413 B
Makefile
VIA_ENABLE = no
|
|
|
|
COMBO_ENABLE = yes
|
|
COMMAND_ENABLE = yes
|
|
RGB_MATRIX_ENABLE = yes
|
|
RAW_ENABLE = no
|
|
CONSOLE_ENABLE = yes
|
|
|
|
WPM_ENABLE = no
|
|
|
|
RGB_MATRIX_LEDMAPS = yes
|
|
|
|
SRC += utils.c
|
|
SRC += mike1808.c
|
|
SRC += process_record.c
|
|
SRC += encoder.c
|
|
|
|
ifeq ($(strip $(WPM_ENABLE)), yes)
|
|
SRC += fun.c
|
|
endif
|
|
|
|
ifeq ($(strip $(RGB_MATRIX_LEDMAPS)), yes)
|
|
SRC += rgb_matrix_ledmaps.c
|
|
OPT_DEFS += -DRGB_MATRIX_LEDMAPS_ENABLED
|
|
endif
|