* Enable 4x4 and 5x5 community keymap support * Pull 4x4 community keymap fixes from @noroadsleft * Build fixes for guidoism keymap - move keymap to layouts/community/planck_mit as it uses the LAYOUT_planck_mit macro
		
			
				
	
	
		
			12 lines
		
	
	
	
		
			278 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
	
		
			278 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 ifeq ($(strip $(KEYBOARD)), 40percentclub/4x4)
 | 
						|
	  BACKLIGHT_ENABLE = no
 | 
						|
else
 | 
						|
  BACKLIGHT_ENABLE = yes
 | 
						|
endif
 |