summaryrefslogtreecommitdiff
path: root/users/manna-harbour_miryoku/post_rules.mk
diff options
context:
space:
mode:
authorManna Harbour <51143715+manna-harbour@users.noreply.github.com>2022-07-02 21:26:23 +1000
committerGitHub <noreply@github.com>2022-07-02 21:26:23 +1000
commit3842b15cf136a6edd4e6491abb3b9a85dbd5867f (patch)
tree67f73626a357c418a70cd60bf6f7a871c586e8da /users/manna-harbour_miryoku/post_rules.mk
parentf2f88bcfcc93a7ab1f7a3adb1b5da205d6e5452f (diff)
[Keymap] Update Miryoku (#16482)
Diffstat (limited to 'users/manna-harbour_miryoku/post_rules.mk')
-rw-r--r--users/manna-harbour_miryoku/post_rules.mk39
1 files changed, 39 insertions, 0 deletions
diff --git a/users/manna-harbour_miryoku/post_rules.mk b/users/manna-harbour_miryoku/post_rules.mk
new file mode 100644
index 0000000000..c5b4b7d28e
--- /dev/null
+++ b/users/manna-harbour_miryoku/post_rules.mk
@@ -0,0 +1,39 @@
+# Copyright 2019 Manna Harbour
+# https://github.com/manna-harbour/miryoku
+
+SRC += manna-harbour_miryoku.c # keymaps
+
+# alternative layouts:
+
+# alphas
+ifneq ($(strip $(MIRYOKU_ALPHAS)),)
+ OPT_DEFS += -DMIRYOKU_ALPHAS_$(MIRYOKU_ALPHAS)
+endif
+
+# nav
+ifneq ($(strip $(MIRYOKU_NAV)),)
+ OPT_DEFS += -DMIRYOKU_NAV_$(MIRYOKU_NAV)
+endif
+
+# clipboard
+ifneq ($(strip $(MIRYOKU_CLIPBOARD)),)
+ OPT_DEFS += -DMIRYOKU_CLIPBOARD_$(MIRYOKU_CLIPBOARD)
+endif
+
+# layers
+ifneq ($(strip $(MIRYOKU_LAYERS)),)
+ OPT_DEFS += -DMIRYOKU_LAYERS_$(MIRYOKU_LAYERS)
+endif
+
+# subset mappings
+ifneq ($(strip $(MIRYOKU_MAPPING)),)
+ OPT_DEFS += -DMIRYOKU_MAPPING_$(MIRYOKU_MAPPING)
+endif
+
+# kludges:
+
+# thumb combos
+ifeq ($(strip $(MIRYOKU_KLUDGE_THUMBCOMBOS)),yes)
+ COMBO_ENABLE = yes
+ OPT_DEFS += -DMIRYOKU_KLUDGE_THUMBCOMBOS
+endif