2021-07-03 15:21:12 +00:00
|
|
|
# SPDX-License-Identifier: GPL-2.0
|
2024-10-30 16:04:26 +00:00
|
|
|
ccflags-y += -I$(src) # needed for trace events
|
2021-07-03 15:21:12 +00:00
|
|
|
|
|
|
|
|
obj-$(CONFIG_SAMPLE_RUST_MINIMAL) += rust_minimal.o
|
2024-12-13 13:47:07 +00:00
|
|
|
obj-$(CONFIG_SAMPLE_RUST_MISC_DEVICE) += rust_misc_device.o
|
2024-11-11 22:08:05 +00:00
|
|
|
obj-$(CONFIG_SAMPLE_RUST_PRINT) += rust_print.o
|
2025-03-17 18:52:10 +00:00
|
|
|
obj-$(CONFIG_SAMPLE_RUST_DMA) += rust_dma.o
|
2024-12-19 17:04:13 +00:00
|
|
|
obj-$(CONFIG_SAMPLE_RUST_DRIVER_PCI) += rust_driver_pci.o
|
2024-12-19 17:04:17 +00:00
|
|
|
obj-$(CONFIG_SAMPLE_RUST_DRIVER_PLATFORM) += rust_driver_platform.o
|
2025-02-10 12:30:26 +00:00
|
|
|
obj-$(CONFIG_SAMPLE_RUST_DRIVER_FAUX) += rust_driver_faux.o
|
2025-04-14 13:18:08 +00:00
|
|
|
obj-$(CONFIG_SAMPLE_RUST_DRIVER_AUXILIARY) += rust_driver_auxiliary.o
|
2025-05-08 08:52:10 +00:00
|
|
|
obj-$(CONFIG_SAMPLE_RUST_CONFIGFS) += rust_configfs.o
|
2024-11-11 22:08:05 +00:00
|
|
|
|
|
|
|
|
rust_print-y := rust_print_main.o rust_print_events.o
|
2021-07-03 15:21:12 +00:00
|
|
|
|
|
|
|
|
subdir-$(CONFIG_SAMPLE_RUST_HOSTPROGS) += hostprogs
|