Makefile.inc.am 404 字节
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 \
8 9 10 11 12 13 14 15 16
	$(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)