Makefile 1.0 KB

12345678910111213141516171819202122
  1. # SPDX-License-Identifier: GPL-2.0
  2. ccflags-y += -I$(src) # needed for trace events
  3. obj-$(CONFIG_SAMPLE_RUST_MINIMAL) += rust_minimal.o
  4. obj-$(CONFIG_SAMPLE_RUST_MISC_DEVICE) += rust_misc_device.o
  5. obj-$(CONFIG_SAMPLE_RUST_PRINT) += rust_print.o
  6. obj-$(CONFIG_SAMPLE_RUST_DEBUGFS) += rust_debugfs.o
  7. obj-$(CONFIG_SAMPLE_RUST_DEBUGFS_SCOPED) += rust_debugfs_scoped.o
  8. obj-$(CONFIG_SAMPLE_RUST_DMA) += rust_dma.o
  9. obj-$(CONFIG_SAMPLE_RUST_DRIVER_I2C) += rust_driver_i2c.o
  10. obj-$(CONFIG_SAMPLE_RUST_I2C_CLIENT) += rust_i2c_client.o
  11. obj-$(CONFIG_SAMPLE_RUST_DRIVER_PCI) += rust_driver_pci.o
  12. obj-$(CONFIG_SAMPLE_RUST_DRIVER_PLATFORM) += rust_driver_platform.o
  13. obj-$(CONFIG_SAMPLE_RUST_DRIVER_USB) += rust_driver_usb.o
  14. obj-$(CONFIG_SAMPLE_RUST_DRIVER_FAUX) += rust_driver_faux.o
  15. obj-$(CONFIG_SAMPLE_RUST_DRIVER_AUXILIARY) += rust_driver_auxiliary.o
  16. obj-$(CONFIG_SAMPLE_RUST_CONFIGFS) += rust_configfs.o
  17. obj-$(CONFIG_SAMPLE_RUST_SOC) += rust_soc.o
  18. rust_print-y := rust_print_main.o rust_print_events.o
  19. subdir-$(CONFIG_SAMPLE_RUST_HOSTPROGS) += hostprogs