mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-11-01 19:01:14 +00:00
15 lines
344 B
Makefile
15 lines
344 B
Makefile
|
# vim: filetype=automake
|
||
|
|
||
|
HYPERVISOR_SOURCES = \
|
||
|
hypervisor/domain_cgroup.h \
|
||
|
hypervisor/domain_cgroup.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)
|