summaryrefslogtreecommitdiff
path: root/keyboards/crkbd/keymaps/jpe230/rules.mk
blob: 459cf9c69175917fab39b0304b9e6ede207284be (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Shared rules for both of my Corne
OLED_ENABLE       = yes
VIA_ENABLE        = yes
RGB_MATRIX_ENABLE = yes

SRC += oled/oled_handler.c process_record.c

ifneq ($(CONVERT_TO),)
    # Asume ARM
    DEBUG_MATRIX_SCAN_RATE_ENABLE = yes
    WPM_ENABLE = yes
    CONSOLE_ENABLE = yes
    SRC +=  oled/rp2040/master/oled_master_handler.c \
            oled/rp2040/master/indicators_down.c \
            oled/rp2040/master/indicators_up.c \
            oled/rp2040/slave/oled_slave_handler.c \
            oled/rp2040/slave/ocean_dream.c
else
    # Asume AVR
    LTO_ENABLE = yes
    SRC +=  oled/avr/master/oled_master_handler.c \
            oled/avr/slave/oled_slave_handler.c
endif