]> git.donarmstrong.com Git - qmk_firmware.git/blob - keymaps/norman/rules.mk
[Keyboard] Add QMK configurator JSON for Alice PCB (#6397)
[qmk_firmware.git] / keymaps / norman / rules.mk
1 #----------------------------------------------------------------------------
2 # make georgi:default:dfu
3 # Make sure you have dfu-programmer installed!
4 #----------------------------------------------------------------------------
5
6 NO_REPEAT                                = yes
7 VERBOSE                                  = yes
8 KEYBOARD_SHARED_EP       = yes
9 CUSTOM_MATRIX                    = yes
10 MOUSEKEY_ENABLE                  = yes
11
12 #Debug options
13 CONSOLE_ENABLE                   = no
14 DEBUG_MATRIX_SCAN_RATE   = no
15 DEBUG_MATRIX                     = no
16 NO_PRINT                                 = yes
17 ONLY_QWERTY                              = no
18
19 # A bunch of stuff that you shouldn't touch unless you
20 # know what you're doing.
21 #
22 # No touchy, capiche?
23 SRC += matrix.c i2c_master.c
24 ifeq ($(strip $(DEBUG_MATRIX)), yes)
25     OPT_DEFS += -DDEBUG_MATRIX
26 endif
27 ifeq ($(strip $(NO_REPEAT)), yes)
28     OPT_DEFS += -DNO_REPEAT
29 endif
30 ifeq ($(strip $(NO_PRINT)), yes)
31     OPT_DEFS += -DNO_PRINT -DNO_DEBUG
32 endif
33 ifeq ($(strip $(ONLY_QWERTY)), yes)
34     OPT_DEFS += -DONLYQWERTY
35 endif