]> git.donarmstrong.com Git - qmk_firmware.git/blob - keyboards/helix/rev2/keymaps/edvorakjp/rules.mk
[Keyboard] Add QMK configurator JSON for Alice PCB (#6397)
[qmk_firmware.git] / keyboards / helix / rev2 / keymaps / edvorakjp / rules.mk
1 # Build Options
2 #   change to "no" to disable the options, or define them in the Makefile in
3 #   the appropriate keymap folder that will get included automatically
4 #
5 BOOTMAGIC_ENABLE = no       # Virtual DIP switch configuration(+1000)
6 MOUSEKEY_ENABLE = no        # Mouse keys(+4700)
7 EXTRAKEY_ENABLE = no        # Audio control and System control(+450)
8 CONSOLE_ENABLE = no         # Console for debug(+400)
9 COMMAND_ENABLE = no         # Commands for debug and configuration
10 NKRO_ENABLE = no            # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work
11 BACKLIGHT_ENABLE = no       # Enable keyboard backlight functionality
12 MIDI_ENABLE = no            # MIDI controls
13 AUDIO_ENABLE = no           # Audio output on port C6
14 UNICODE_ENABLE = no         # Unicode
15 BLUETOOTH_ENABLE = no       # Enable Bluetooth with the Adafruit EZ-Key HID
16 RGBLIGHT_ENABLE = no        # Enable WS2812 RGB underlight.
17 SWAP_HANDS_ENABLE = no      # Enable one-hand typing
18 TAP_DANCE_ENABLE = yes
19
20 define HELIX_CUSTOMISE_MSG
21   $(info Helix customize)
22   $(info -  OLED_ENABLE=$(OLED_ENABLE))
23   $(info -  LED_BACK_ENABLE=$(LED_BACK_ENABLE))
24   $(info -  LED_UNDERGLOW_ENABLE=$(LED_UNDERGLOW_ENABLE))
25   $(info -  LED_ANIMATION=$(LED_ANIMATIONS))
26   $(info -  IOS_DEVICE_ENABLE=$(IOS_DEVICE_ENABLE))
27 endef
28
29 # Helix keyboard customize
30 # you can edit follows 7 Variables
31 #  jp: 以下の7つの変数を必要に応じて編集します。
32 HELIX_ROWS = 5              # Helix Rows is 4 or 5
33 OLED_ENABLE = no            # OLED_ENABLE
34 LOCAL_GLCDFONT = no         # use each keymaps "helixfont.h" instead of "common/glcdfont.c"
35 LED_BACK_ENABLE = no        # LED backlight (Enable WS2812 RGB underlight.)
36 LED_UNDERGLOW_ENABLE = no   # LED underglow (Enable WS2812 RGB underlight.)
37 LED_ANIMATIONS = yes        # LED animations
38 IOS_DEVICE_ENABLE = no      # connect to IOS device (iPad,iPhone)
39 Link_Time_Optimization = no # if firmware size over limit, try this option
40
41 ####  LED_BACK_ENABLE and LED_UNDERGLOW_ENABLE.
42 ####    Do not enable these with audio at the same time.
43
44 ### Helix keyboard 'edvorakjp' keymap: convenient command line option
45 ##    make HELIX=<options> helix:edvorakjp
46 ##    option= oled | back | under | na | ios
47 ##    ex.
48 ##      make HELIX=oled          helix:edvorakjp
49 ##      make HELIX=oled,back     helix:edvorakjp
50 ##      make HELIX=oled,under    helix:edvorakjp
51 ##      make HELIX=oled,back,na  helix:edvorakjp
52 ##      make HELIX=oled,back,ios helix:edvorakjp
53 ##
54 ifneq ($(strip $(HELIX)),)
55   ifeq ($(findstring oled,$(HELIX)), oled)
56     OLED_ENABLE = yes
57   endif
58   ifeq ($(findstring back,$(HELIX)), back)
59     LED_BACK_ENABLE = yes
60   else ifeq ($(findstring under,$(HELIX)), under)
61     LED_UNDERGLOW_ENABLE = yes
62   endif
63   ifeq ($(findstring na,$(HELIX)), na)
64     LED_ANIMATIONS = no
65   endif
66   ifeq ($(findstring ios,$(HELIX)), ios)
67     IOS_DEVICE_ENABLE = yes
68   endif
69   $(eval $(call HELIX_CUSTOMISE_MSG))
70   $(info )
71 endif
72
73 # Uncomment these for checking
74 #   jp: コンパイル時にカスタマイズの状態を表示したい時はコメントをはずします。
75 # $(eval $(call HELIX_CUSTOMISE_MSG))
76 # $(info )
77
78 ifeq ($(strip $(HELIX_ROWS)), 4)
79   SRC += keymap_4rows.c
80 else ifeq ($(strip $(HELIX_ROWS)), 5)
81   SRC += keymap_5rows.c
82 else
83   $(error HELIX_ROWS = $(strip $(HELIX_ROWS)) is unexpected value)
84 endif
85 OPT_DEFS += -DHELIX_ROWS=$(strip $(HELIX_ROWS))
86
87 ifeq ($(strip $(LED_BACK_ENABLE)), yes)
88   RGBLIGHT_ENABLE = yes
89   OPT_DEFS += -DRGBLED_BACK
90   ifeq ($(strip $(LED_UNDERGLOW_ENABLE)), yes)
91     $(eval $(call HELIX_CUSTOMISE_MSG))
92     $(error LED_BACK_ENABLE and LED_UNDERGLOW_ENABLE both 'yes')
93   endif
94 else ifeq ($(strip $(LED_UNDERGLOW_ENABLE)), yes)
95   RGBLIGHT_ENABLE = yes
96   OPT_DEFS += -DRGBLED_BACK
97 else
98   RGBLIGHT_ENABLE = no
99 endif
100
101 ifeq ($(strip $(IOS_DEVICE_ENABLE)), yes)
102   OPT_DEFS += -DIOS_DEVICE_ENABLE
103 endif
104
105 ifeq ($(strip $(LED_ANIMATIONS)), yes)
106   OPT_DEFS += -DLED_ANIMATIONS
107 endif
108
109 ifeq ($(strip $(OLED_ENABLE)), yes)
110   OPT_DEFS += -DOLED_ENABLE
111   SRC += oled.c
112 endif
113
114 ifeq ($(strip $(LOCAL_GLCDFONT)), yes)
115   OPT_DEFS += -DLOCAL_GLCDFONT
116 endif
117
118 ifeq ($(strip $(Link_Time_Optimization)),yes)
119     EXTRAFLAGS += -flto -DUSE_Link_Time_Optimization
120 endif
121
122 # Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE
123 SLEEP_LED_ENABLE = no    # Breathing sleep LED during USB suspend
124
125 # Uncomment these for debugging
126 # $(info -- RGBLIGHT_ENABLE=$(RGBLIGHT_ENABLE))
127 # $(info -- OPT_DEFS=$(OPT_DEFS))
128 # $(info )