generic_features.mk 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. # Copyright 2021 QMK
  2. #
  3. # This program is free software: you can redistribute it and/or modify
  4. # it under the terms of the GNU General Public License as published by
  5. # the Free Software Foundation, either version 2 of the License, or
  6. # (at your option) any later version.
  7. #
  8. # This program is distributed in the hope that it will be useful,
  9. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. # GNU General Public License for more details.
  12. #
  13. # You should have received a copy of the GNU General Public License
  14. # along with this program. If not, see <http://www.gnu.org/licenses/>.
  15. GRAVE_ESC_ENABLE ?= yes
  16. MAGIC_ENABLE ?= yes
  17. SEND_STRING_ENABLE ?= yes
  18. SPACE_CADET_ENABLE ?= yes
  19. GENERIC_FEATURES = \
  20. AUTO_SHIFT \
  21. AUTOCORRECT \
  22. BOOTMAGIC \
  23. CAPS_WORD \
  24. COMBO \
  25. COMMAND \
  26. CRC \
  27. DEFERRED_EXEC \
  28. DIGITIZER \
  29. DIP_SWITCH \
  30. DYNAMIC_KEYMAP \
  31. DYNAMIC_MACRO \
  32. DYNAMIC_TAPPING_TERM \
  33. GRAVE_ESC \
  34. HAPTIC \
  35. KEY_LOCK \
  36. KEY_OVERRIDE \
  37. LEADER \
  38. MAGIC \
  39. MOUSEKEY \
  40. MUSIC \
  41. OS_DETECTION \
  42. PROGRAMMABLE_BUTTON \
  43. REPEAT_KEY \
  44. SECURE \
  45. SEND_STRING \
  46. SEQUENCER \
  47. SPACE_CADET \
  48. SWAP_HANDS \
  49. TAP_DANCE \
  50. TRI_LAYER \
  51. VIA \
  52. VIRTSER \
  53. WPM \
  54. define HANDLE_GENERIC_FEATURE
  55. # $$(info "Processing: $1_ENABLE $2.c")
  56. SRC += $$(wildcard $$(QUANTUM_DIR)/process_keycode/process_$2.c)
  57. SRC += $$(wildcard $$(QUANTUM_DIR)/$2/$2.c)
  58. SRC += $$(wildcard $$(QUANTUM_DIR)/$2.c)
  59. VPATH += $$(wildcard $$(QUANTUM_DIR)/$2/)
  60. OPT_DEFS += -D$1_ENABLE
  61. endef
  62. $(foreach F,$(GENERIC_FEATURES),\
  63. $(if $(filter yes, $(strip $($(F)_ENABLE))),\
  64. $(eval $(call HANDLE_GENERIC_FEATURE,$(F),$(shell echo $(F) | tr '[:upper:]' '[:lower:]'))) \
  65. ) \
  66. )