diff options
author | QMK Bot <hello@qmk.fm> | 2021-06-24 02:22:11 +0000 |
---|---|---|
committer | QMK Bot <hello@qmk.fm> | 2021-06-24 02:22:11 +0000 |
commit | b69fa51ec39d2825067b11f065ff8e59e41d8dc9 (patch) | |
tree | c36f3c63b8472a1f5b951cc9e2e5a03df1532fee /users/snowe/rules.mk | |
parent | 1ea01765e19bf84b9a09954443b7d64be2bec0c7 (diff) | |
parent | 909d9c228fb03750170aa7ca49ea10d08a6e1113 (diff) |
Merge remote-tracking branch 'origin/master' into develop
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 0000000000..a6e152c1cf --- /dev/null +++ b/users/snowe/rules.mk @@ -0,0 +1,27 @@ + + +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 |