* 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>
		
			
				
	
	
		
			27 lines
		
	
	
	
		
			500 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
	
		
			500 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
 | 
						|
 | 
						|
ifeq ($(strip $(OLED_ENABLE)), yes)
 | 
						|
    SRC += oled_setup.c
 | 
						|
 | 
						|
	ifdef OCEAN_DREAM_ENABLE
 | 
						|
		ifeq ($(strip $(OCEAN_DREAM_ENABLE)), yes)
 | 
						|
			SRC += ocean_dream.c
 | 
						|
			OPT_DEFS += -DOCEAN_DREAM_ENABLE
 | 
						|
    	endif
 | 
						|
	endif
 | 
						|
	ifndef OCEAN_DREAM_ENABLE
 | 
						|
		SRC += ocean_dream.c
 | 
						|
		OPT_DEFS += -DOCEAN_DREAM_ENABLE
 | 
						|
	endif
 | 
						|
 | 
						|
	ifdef LUNA_ENABLE
 | 
						|
		ifeq ($(strip $(LUNA_ENABLE)), yes)
 | 
						|
			SRC += luna.c
 | 
						|
			OPT_DEFS += -DLUNA_ENABLE
 | 
						|
		endif
 | 
						|
	endif
 | 
						|
	ifndef LUNA_ENABLE
 | 
						|
		SRC += luna.c
 | 
						|
		OPT_DEFS += -DLUNA_ENABLE
 | 
						|
	endif
 | 
						|
endif
 |