* add docs * core changes * update keyboards to new OLED * updated users to new OLED * update layouts to new OLED * fixup docs * drashna's suggestion * fix up docs * new keyboards with oled * core split changes * remaining keyboard files * Fix The Helix keyboards oled options * reflect develop Co-authored-by: Drashna Jaelre <drashna@live.com> Co-authored-by: mtei <2170248+mtei@users.noreply.github.com>
		
			
				
	
	
		
			32 lines
		
	
	
	
		
			710 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			32 lines
		
	
	
	
		
			710 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
SRC += xulkal.c \
 | 
						|
    process_records.c \
 | 
						|
    custom_tap_dance.c
 | 
						|
 | 
						|
# Some usual defaults
 | 
						|
MOUSEKEY_ENABLE         = no    # Mouse keys (+4700)
 | 
						|
EXTRAKEY_ENABLE         = yes   # Audio control and System control (+450)
 | 
						|
TAP_DANCE_ENABLE        = yes
 | 
						|
 | 
						|
ifneq ($(strip $(DISABLE_LTO)), yes)
 | 
						|
  EXTRAFLAGS += -flto
 | 
						|
  OPT_DEFS += -DNO_ACTION_MACRO
 | 
						|
  OPT_DEFS += -DNO_ACTION_FUNCTION
 | 
						|
endif
 | 
						|
 | 
						|
ifeq ($(strip $(ENCODER_ENABLE)), yes)
 | 
						|
  SRC += custom_encoder.c
 | 
						|
endif
 | 
						|
 | 
						|
ifneq ($(strip $(RGB_MATRIX_ENABLE)), no)
 | 
						|
  OPT_DEFS += -DRGB_ENABLE
 | 
						|
  SRC += custom_rgb.c
 | 
						|
endif
 | 
						|
 | 
						|
ifeq ($(strip $(RGBLIGHT_ENABLE)), yes)
 | 
						|
  OPT_DEFS += -DRGB_ENABLE
 | 
						|
  SRC += custom_rgb.c
 | 
						|
endif
 | 
						|
 | 
						|
ifeq ($(strip $(OLED_ENABLE)), yes)
 | 
						|
  SRC += custom_oled.c
 | 
						|
endif
 |