aboutsummaryrefslogtreecommitdiffstats
path: root/src/Makefile
diff options
context:
space:
mode:
authorKevin O'Connor <kevin@koconnor.net>2025-04-06 12:42:23 -0400
committerKevin O'Connor <kevin@koconnor.net>2025-04-16 13:54:39 -0400
commitd98abfc5db761455a30062069ac6bcb5d1fd540b (patch)
treed0d070b90449924ab4e86ea32c85858a95d6d75a /src/Makefile
parentc3c64adc321968b0db63ea560c278d9c99d31c19 (diff)
downloadkutter-d98abfc5db761455a30062069ac6bcb5d1fd540b.tar.gz
kutter-d98abfc5db761455a30062069ac6bcb5d1fd540b.tar.xz
kutter-d98abfc5db761455a30062069ac6bcb5d1fd540b.zip
Kconfig: Replace WANT_DISPLAYS with individual options
Support setting WANT_ST7920 and WANT_HD44780 individually. Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'src/Makefile')
-rw-r--r--src/Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/Makefile b/src/Makefile
index 9cbfd2d3..7ff99193 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -13,7 +13,8 @@ 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_ST7920) += lcd_st7920.c
+src-$(CONFIG_WANT_HD44780) += lcd_hd44780.c
src-$(CONFIG_WANT_SOFTWARE_SPI) += spi_software.c
src-$(CONFIG_WANT_SOFTWARE_I2C) += i2c_software.c
src-$(CONFIG_WANT_THERMOCOUPLE) += thermocouple.c