aboutsummaryrefslogtreecommitdiffstats
path: root/src/Makefile
diff options
context:
space:
mode:
authorKevin O'Connor <kevin@koconnor.net>2025-04-06 12:36:41 -0400
committerKevin O'Connor <kevin@koconnor.net>2025-04-16 13:54:27 -0400
commitc3c64adc321968b0db63ea560c278d9c99d31c19 (patch)
tree32928e16ddf341840ac8bc541d9305c529812448 /src/Makefile
parentefc2d9b364f063fe366cc12ce49374a007a570be (diff)
downloadkutter-c3c64adc321968b0db63ea560c278d9c99d31c19.tar.gz
kutter-c3c64adc321968b0db63ea560c278d9c99d31c19.tar.xz
kutter-c3c64adc321968b0db63ea560c278d9c99d31c19.zip
Kconfig: Replace WANT_GPIO_BITBANGING with individual options
Support setting individual options instead of one global option ( WANT_BUTTONS, WANT_TMCUART, WANT_NEOPIXEL, WANT_PULSE_COUNTER, WANT_HX71X). Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'src/Makefile')
-rw-r--r--src/Makefile6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/Makefile b/src/Makefile
index a7343ffc..9cbfd2d3 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -9,8 +9,10 @@ src-$(CONFIG_HAVE_GPIO_SDIO) += sdiocmds.c
src-$(CONFIG_HAVE_GPIO_I2C) += i2ccmds.c
src-$(CONFIG_HAVE_GPIO_HARD_PWM) += pwmcmds.c
-src-$(CONFIG_WANT_GPIO_BITBANGING) += buttons.c tmcuart.c neopixel.c \
- pulse_counter.c
+src-$(CONFIG_WANT_BUTTONS) += buttons.c
+src-$(CONFIG_WANT_TMCUART) += tmcuart.c
+src-$(CONFIG_WANT_NEOPIXEL) += neopixel.c
+src-$(CONFIG_WANT_PULSE_COUNTER) += pulse_counter.c
src-$(CONFIG_WANT_DISPLAYS) += lcd_st7920.c lcd_hd44780.c
src-$(CONFIG_WANT_SOFTWARE_SPI) += spi_software.c
src-$(CONFIG_WANT_SOFTWARE_I2C) += i2c_software.c