4a15eb593d
* Add snowe keymap/userspace & Ocean Dream animation * Add snowe userspace with keymap wrappers and two animations * Add crkbd keymap * Add Ocean Dream animation, a cool full screen animation with: * * twinkling stars * * meteor showers * * ocean waves * * island with palm tree * * moon with phases * Disable Luna so travis build succeeds. * Add more copyrights * Add pragma once to keycode_aliases.h Co-authored-by: Drashna Jaelre <drashna@live.com> Co-authored-by: Drashna Jaelre <drashna@live.com>
27 lines
507 B
Makefile
27 lines
507 B
Makefile
|
|
|
|
ifeq ($(strip $(OLED_DRIVER_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
|