2020-02-17 21:29:11 +00:00
|
|
|
# vim: filetype=automake
|
|
|
|
|
|
|
|
HYPERVISOR_SOURCES = \
|
|
|
|
hypervisor/domain_cgroup.h \
|
|
|
|
hypervisor/domain_cgroup.c \
|
2020-02-17 21:29:16 +00:00
|
|
|
hypervisor/domain_driver.h \
|
|
|
|
hypervisor/domain_driver.c \
|
2020-02-22 17:16:19 +00:00
|
|
|
hypervisor/virclosecallbacks.h \
|
|
|
|
hypervisor/virclosecallbacks.c \
|
2020-02-22 16:52:59 +00:00
|
|
|
hypervisor/virhostdev.h \
|
|
|
|
hypervisor/virhostdev.c \
|
2020-02-17 21:29:11 +00:00
|
|
|
$(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)
|