* Matrix/keymap refactor White space and readability updates * Configurator support Added info.json file. * Readme update Markdown formatting * Add support for ortho_4x12 keymaps * Added planck_mit layout support * Disable SWAP_HANDS_ENABLE for zlant:wanleg keymap * Disable BACKLIGHT_ENABLE for zlant:bakingpy keymap
		
			
				
	
	
		
			11 lines
		
	
	
		
			201 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			201 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
# Enable RGB if not a Planck
 | 
						|
ifeq ($(LAYOUTS_HAS_RGB),yes)
 | 
						|
	RGBLIGHT_ENABLE = yes
 | 
						|
endif
 | 
						|
AUDIO_ENABLE = no
 | 
						|
ifeq ($(strip $(KEYBOARD)), zlant)
 | 
						|
  BACKLIGHT_ENABLE = no
 | 
						|
else
 | 
						|
  BACKLIGHT_ENABLE = yes
 | 
						|
endif
 |