mirror of https://github.com/Desuuuu/klipper.git
13 lines
542 B
Makefile
13 lines
542 B
Makefile
# Main code build rules
|
|
|
|
src-y += sched.c command.c basecmd.c debugcmds.c
|
|
src-$(CONFIG_HAVE_GPIO) += initial_pins.c gpiocmds.c stepper.c endstop.c \
|
|
trsync.c
|
|
src-$(CONFIG_HAVE_GPIO_ADC) += adccmds.c
|
|
src-$(CONFIG_HAVE_GPIO_SPI) += spicmds.c thermocouple.c
|
|
src-$(CONFIG_HAVE_GPIO_I2C) += i2ccmds.c
|
|
src-$(CONFIG_HAVE_GPIO_HARD_PWM) += pwmcmds.c
|
|
bb-src-$(CONFIG_HAVE_GPIO_SPI) := spi_software.c sensor_adxl345.c
|
|
src-$(CONFIG_HAVE_GPIO_BITBANGING) += $(bb-src-y) lcd_st7920.c lcd_hd44780.c \
|
|
buttons.c tmcuart.c neopixel.c pulse_counter.c
|