f2ea65db6b
* [keyboard] introducing ninjonas userspace & keymaps for hotdox, lily58, and pinky3 * [fix(#6649)] removed M_EPRM and used builtin EEP_RST keycode as-per review. * [chore(#6649)] forgot to update keymap legend on lily58
18 lines
593 B
Makefile
18 lines
593 B
Makefile
BOOTMAGIC_ENABLE = no # Disable Boot Magic (https://beta.docs.qmk.fm/features/feature_bootmagic)
|
|
MOUSEKEY_ENABLE = yes # Mouse keys(+4700)
|
|
EXTRAKEY_ENABLE = yes # Audio control and System control(+450)
|
|
TAP_DANCE_ENABLE = yes # Enable Tap Dance.
|
|
|
|
Link_Time_Optimization = no # if firmware size over limit, try this option
|
|
|
|
ifeq ($(strip $(Link_Time_Optimization)),yes)
|
|
EXTRAFLAGS += -flto -DUSE_Link_Time_Optimization
|
|
endif
|
|
|
|
SRC += ninjonas.c \
|
|
process_records.c \
|
|
tap_dances.c
|
|
|
|
ifneq ("$(wildcard $(USER_PATH)/secrets.c)","")
|
|
SRC += secrets.c
|
|
endif |