aboutsummaryrefslogtreecommitdiff
path: root/backends/Makefile.objs
blob: 717fcbdae4715db128b0c3b97fa70b08de014d5d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
common-obj-y += rng.o rng-egd.o
common-obj-$(CONFIG_POSIX) += rng-random.o

common-obj-$(CONFIG_TPM) += tpm.o

common-obj-y += hostmem.o hostmem-ram.o
common-obj-$(CONFIG_POSIX) += hostmem-file.o

common-obj-y += cryptodev.o
common-obj-y += cryptodev-builtin.o

ifeq ($(CONFIG_VIRTIO),y)
common-obj-y += cryptodev-vhost.o
common-obj-$(call land,$(CONFIG_VHOST_USER),$(CONFIG_LINUX)) += \
    cryptodev-vhost-user.o
endif

common-obj-$(CONFIG_LINUX) += hostmem-memfd.o