mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-11-01 10:51:12 +00:00
25c29ac2f5
Just like virhostdev, this depends on domain_conf and it's shared by multiple hypervisor drivers. Signed-off-by: Ján Tomko <jtomko@redhat.com> Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
21 lines
526 B
Makefile
21 lines
526 B
Makefile
# vim: filetype=automake
|
|
|
|
HYPERVISOR_SOURCES = \
|
|
hypervisor/domain_cgroup.h \
|
|
hypervisor/domain_cgroup.c \
|
|
hypervisor/domain_driver.h \
|
|
hypervisor/domain_driver.c \
|
|
hypervisor/virclosecallbacks.h \
|
|
hypervisor/virclosecallbacks.c \
|
|
hypervisor/virhostdev.h \
|
|
hypervisor/virhostdev.c \
|
|
$(NULL)
|
|
|
|
noinst_LTLIBRARIES += libvirt_hypervisor.la
|
|
libvirt_la_BUILT_LIBADD += libvirt_hypervisor.la
|
|
libvirt_hypervisor_la_CFLAGS = \
|
|
-I$(srcdir)/conf \
|
|
$(AM_CFLAGS) \
|
|
$(NULL)
|
|
libvirt_hypervisor_la_SOURCES = $(HYPERVISOR_SOURCES)
|