1# SPDX-License-Identifier: GPL-2.0-only 2ccflags-y += -I$(src) # needed for trace events 3ccflags-y += -Wmissing-prototypes -Wmissing-declarations 4 5obj-$(CONFIG_ANDROID_BINDER_IPC_RUST) += rust_binder.o 6rust_binder-$(CONFIG_ANDROID_BINDER_IPC_RUST) := \ 7 rust_binder_main.o \ 8 rust_binderfs.o \ 9 rust_binder_events.o \ 10 rust_binder_hooks.o \ 11 page_range_helper.o 12 13obj-$(CONFIG_ANDROID_BINDER_IPC_RUST_DUMMY) += rust_binder.o 14rust_binder-$(CONFIG_ANDROID_BINDER_IPC_RUST_DUMMY) := dummy.o 15