Makefile.inc.am 458 字节
Newer Older
1 2 3 4 5
# vim: filetype=automake

HYPERVISOR_SOURCES = \
	hypervisor/domain_cgroup.h \
	hypervisor/domain_cgroup.c \
6 7
	hypervisor/domain_driver.h \
	hypervisor/domain_driver.c \
J
Ján Tomko 已提交
8 9
	hypervisor/virhostdev.h \
	hypervisor/virhostdev.c \
10 11 12 13 14 15 16 17 18
	$(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)