@@ -75,10 +75,7 @@ ifeq ($(strip $(AUDIO_ENABLE)), yes)
75
75
endif
76
76
77
77
ifeq ($(strip $(SEQUENCER_ENABLE ) ) , yes)
78
- OPT_DEFS += -DSEQUENCER_ENABLE
79
78
MUSIC_ENABLE = yes
80
- SRC += $(QUANTUM_DIR ) /sequencer/sequencer.c
81
- SRC += $(QUANTUM_DIR ) /process_keycode/process_sequencer.c
82
79
endif
83
80
84
81
ifeq ($(strip $(MIDI_ENABLE ) ) , yes)
@@ -94,11 +91,6 @@ ifeq ($(strip $(MIDI_ENABLE)), yes)
94
91
SRC += $(QUANTUM_DIR ) /process_keycode/process_midi.c
95
92
endif
96
93
97
- MUSIC_ENABLE ?= no
98
- ifeq ($(MUSIC_ENABLE ) , yes)
99
- SRC += $(QUANTUM_DIR ) /process_keycode/process_music.c
100
- endif
101
-
102
94
VALID_STENO_PROTOCOL_TYPES := geminipr txbolt all
103
95
STENO_PROTOCOL ?= all
104
96
ifeq ($(strip $(STENO_ENABLE ) ) , yes)
@@ -124,14 +116,8 @@ ifeq ($(strip $(STENO_ENABLE)), yes)
124
116
endif
125
117
endif
126
118
127
- ifeq ($(strip $(VIRTSER_ENABLE ) ) , yes)
128
- OPT_DEFS += -DVIRTSER_ENABLE
129
- endif
130
-
131
119
ifeq ($(strip $(MOUSEKEY_ENABLE ) ) , yes)
132
- OPT_DEFS += -DMOUSEKEY_ENABLE
133
120
MOUSE_ENABLE := yes
134
- SRC += $(QUANTUM_DIR ) /mousekey.c
135
121
endif
136
122
137
123
VALID_POINTING_DEVICE_DRIVER_TYPES := adns5050 adns9800 analog_joystick cirque_pinnacle_i2c cirque_pinnacle_spi paw3204 pmw3320 pmw3360 pmw3389 pimoroni_trackball custom
@@ -360,18 +346,15 @@ ifeq ($(strip $(LED_MATRIX_ENABLE)), yes)
360
346
endif
361
347
OPT_DEFS += -DLED_MATRIX_ENABLE
362
348
OPT_DEFS += -DLED_MATRIX_$(strip $(shell echo $(LED_MATRIX_DRIVER ) | tr '[:lower:]' '[:upper:]') )
363
- ifneq (,$(filter $(MCU ) , atmega16u2 atmega32u2 at90usb162) )
364
- # ATmegaxxU2 does not have hardware MUL instruction - lib8tion must be told to use software multiplication routines
365
- OPT_DEFS += -DLIB8_ATTINY
366
- endif
349
+
367
350
COMMON_VPATH += $(QUANTUM_DIR ) /led_matrix
368
351
COMMON_VPATH += $(QUANTUM_DIR ) /led_matrix/animations
369
352
COMMON_VPATH += $(QUANTUM_DIR ) /led_matrix/animations/runners
370
353
POST_CONFIG_H += $(QUANTUM_DIR ) /led_matrix/post_config.h
371
354
SRC += $(QUANTUM_DIR ) /process_keycode/process_backlight.c
372
355
SRC += $(QUANTUM_DIR ) /led_matrix/led_matrix.c
373
356
SRC += $(QUANTUM_DIR ) /led_matrix/led_matrix_drivers.c
374
- SRC += $( LIB_PATH ) /lib8tion/lib8tion.c
357
+ LIB8TION_ENABLE := yes
375
358
CIE1931_CURVE := yes
376
359
377
360
ifeq ($(strip $(LED_MATRIX_DRIVER)), is31fl3218)
@@ -463,18 +446,15 @@ ifeq ($(strip $(RGB_MATRIX_ENABLE)), yes)
463
446
endif
464
447
OPT_DEFS += -DRGB_MATRIX_ENABLE
465
448
OPT_DEFS += -DRGB_MATRIX_$(strip $(shell echo $(RGB_MATRIX_DRIVER ) | tr '[:lower:]' '[:upper:]') )
466
- ifneq (,$(filter $(MCU ) , atmega16u2 atmega32u2 at90usb162) )
467
- # ATmegaxxU2 does not have hardware MUL instruction - lib8tion must be told to use software multiplication routines
468
- OPT_DEFS += -DLIB8_ATTINY
469
- endif
449
+
470
450
COMMON_VPATH += $(QUANTUM_DIR ) /rgb_matrix
471
451
COMMON_VPATH += $(QUANTUM_DIR ) /rgb_matrix/animations
472
452
COMMON_VPATH += $(QUANTUM_DIR ) /rgb_matrix/animations/runners
473
453
POST_CONFIG_H += $(QUANTUM_DIR ) /rgb_matrix/post_config.h
474
454
SRC += $(QUANTUM_DIR ) /color.c
475
455
SRC += $(QUANTUM_DIR ) /rgb_matrix/rgb_matrix.c
476
456
SRC += $(QUANTUM_DIR ) /rgb_matrix/rgb_matrix_drivers.c
477
- SRC += $( LIB_PATH ) /lib8tion/lib8tion.c
457
+ LIB8TION_ENABLE := yes
478
458
CIE1931_CURVE := yes
479
459
RGB_KEYCODES_ENABLE := yes
480
460
@@ -632,8 +612,6 @@ ifeq ($(strip $(VIA_ENABLE)), yes)
632
612
RAW_ENABLE := yes
633
613
BOOTMAGIC_ENABLE := yes
634
614
TRI_LAYER_ENABLE := yes
635
- SRC += $(QUANTUM_DIR ) /via.c
636
- OPT_DEFS += -DVIA_ENABLE
637
615
endif
638
616
639
617
VALID_MAGIC_TYPES := yes
@@ -718,17 +696,20 @@ ifeq ($(strip $(SPLIT_KEYBOARD)), yes)
718
696
COMMON_VPATH += $(QUANTUM_PATH ) /split_common
719
697
endif
720
698
721
- ifeq ($(strip $(CRC_ENABLE ) ) , yes)
722
- OPT_DEFS += -DCRC_ENABLE
723
- SRC += crc.c
724
- endif
725
-
726
699
ifeq ($(strip $(FNV_ENABLE ) ) , yes)
727
700
OPT_DEFS += -DFNV_ENABLE
728
701
VPATH += $(LIB_PATH ) /fnv
729
702
SRC += qmk_fnv_type_validation.c hash_32a.c hash_64a.c
730
703
endif
731
704
705
+ ifeq ($(strip $(LIB8TION_ENABLE ) ) , yes)
706
+ ifneq (,$(filter $(MCU), atmega16u2 atmega32u2 at90usb162))
707
+ # ATmegaxxU2 does not have hardware MUL instruction - lib8tion must be told to use software multiplication routines
708
+ OPT_DEFS += -DLIB8_ATTINY
709
+ endif
710
+ SRC += $(LIB_PATH ) /lib8tion/lib8tion.c
711
+ endif
712
+
732
713
VALID_HAPTIC_DRIVER_TYPES := drv2605l solenoid
733
714
ifeq ($(strip $(HAPTIC_ENABLE ) ) ,yes)
734
715
ifeq ($(filter $(HAPTIC_DRIVER),$(VALID_HAPTIC_DRIVER_TYPES)),)
@@ -819,27 +800,6 @@ ifeq ($(strip $(UNICODE_COMMON)), yes)
819
800
$(QUANTUM_DIR ) /unicode/utf8.c
820
801
endif
821
802
822
- MAGIC_ENABLE ?= yes
823
- ifeq ($(strip $(MAGIC_ENABLE ) ) , yes)
824
- SRC += $(QUANTUM_DIR ) /process_keycode/process_magic.c
825
- OPT_DEFS += -DMAGIC_KEYCODE_ENABLE
826
- endif
827
-
828
- SEND_STRING_ENABLE ?= yes
829
- ifeq ($(strip $(SEND_STRING_ENABLE ) ) , yes)
830
- OPT_DEFS += -DSEND_STRING_ENABLE
831
- COMMON_VPATH += $(QUANTUM_DIR ) /send_string
832
- SRC += $(QUANTUM_DIR ) /send_string/send_string.c
833
- endif
834
-
835
- ifeq ($(strip $(AUTO_SHIFT_ENABLE ) ) , yes)
836
- SRC += $(QUANTUM_DIR ) /process_keycode/process_auto_shift.c
837
- OPT_DEFS += -DAUTO_SHIFT_ENABLE
838
- ifeq ($(strip $(AUTO_SHIFT_MODIFIERS)), yes)
839
- OPT_DEFS += -DAUTO_SHIFT_MODIFIERS
840
- endif
841
- endif
842
-
843
803
ifeq ($(strip $(PS2_MOUSE_ENABLE ) ) , yes)
844
804
PS2_ENABLE := yes
845
805
MOUSE_ENABLE := yes
@@ -946,14 +906,6 @@ ifeq ($(strip $(ENCODER_ENABLE)), yes)
946
906
endif
947
907
endif
948
908
949
- ifeq ($(strip $(OS_DETECTION_ENABLE ) ) , yes)
950
- SRC += $(QUANTUM_DIR ) /os_detection.c
951
- OPT_DEFS += -DOS_DETECTION_ENABLE
952
- ifeq ($(strip $(OS_DETECTION_DEBUG_ENABLE)), yes)
953
- OPT_DEFS += -DOS_DETECTION_DEBUG_ENABLE
954
- endif
955
- endif
956
-
957
909
VALID_WS2812_DRIVER_TYPES := bitbang custom i2c pwm spi vendor
958
910
959
911
WS2812_DRIVER ?= bitbang
0 commit comments