diff options
| author | Tyler Thrailkill <tylerbthrailkill@gmail.com> | 2021-06-23 20:21:40 -0600 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-06-24 12:21:40 +1000 |
| commit | 4a15eb593d0d1447bf9bca87ef966f84b8077a4f (patch) | |
| tree | 8b4bf29238334d71eca22d4687451f8c0430dab4 /users/snowe/rules.mk | |
| parent | 6e1ed1c9d3f083e7dbb7b17375e437963cd70771 (diff) | |
| download | qmk_firmware-4a15eb593d0d1447bf9bca87ef966f84b8077a4f.tar.gz qmk_firmware-4a15eb593d0d1447bf9bca87ef966f84b8077a4f.zip | |
snowe keymap/userspace and Ocean Dream animation (#12477)
* 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>
Diffstat (limited to 'users/snowe/rules.mk')
| -rw-r--r-- | users/snowe/rules.mk | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/users/snowe/rules.mk b/users/snowe/rules.mk new file mode 100644 index 000000000..a6e152c1c --- /dev/null +++ b/users/snowe/rules.mk | |||
| @@ -0,0 +1,27 @@ | |||
| 1 | |||
| 2 | |||
| 3 | ifeq ($(strip $(OLED_DRIVER_ENABLE)), yes) | ||
| 4 | SRC += oled_setup.c | ||
| 5 | |||
| 6 | ifdef OCEAN_DREAM_ENABLE | ||
| 7 | ifeq ($(strip $(OCEAN_DREAM_ENABLE)), yes) | ||
| 8 | SRC += ocean_dream.c | ||
| 9 | OPT_DEFS += -DOCEAN_DREAM_ENABLE | ||
| 10 | endif | ||
| 11 | endif | ||
| 12 | ifndef OCEAN_DREAM_ENABLE | ||
| 13 | SRC += ocean_dream.c | ||
| 14 | OPT_DEFS += -DOCEAN_DREAM_ENABLE | ||
| 15 | endif | ||
| 16 | |||
| 17 | ifdef LUNA_ENABLE | ||
| 18 | ifeq ($(strip $(LUNA_ENABLE)), yes) | ||
| 19 | SRC += luna.c | ||
| 20 | OPT_DEFS += -DLUNA_ENABLE | ||
| 21 | endif | ||
| 22 | endif | ||
| 23 | ifndef LUNA_ENABLE | ||
| 24 | SRC += luna.c | ||
| 25 | OPT_DEFS += -DLUNA_ENABLE | ||
| 26 | endif | ||
| 27 | endif | ||
