mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-01-09 06:25:19 +00:00
03a07357e1
Vim has trouble figuring out the filetype automatically because the name doesn't follow existing conventions; annotations like the ones we already have in Makefile.ci help it out. Signed-off-by: Andrea Bolognani <abologna@redhat.com> Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
31 lines
718 B
Makefile
31 lines
718 B
Makefile
# vim: filetype=automake
|
|
|
|
OPENVZ_DRIVER_SOURCES = \
|
|
openvz/openvz_conf.c \
|
|
openvz/openvz_conf.h \
|
|
openvz/openvz_driver.c \
|
|
openvz/openvz_driver.h \
|
|
openvz/openvz_util.c \
|
|
openvz/openvz_util.h \
|
|
$(NULL)
|
|
|
|
DRIVER_SOURCE_FILES += $(OPENVZ_DRIVER_SOURCES)
|
|
|
|
EXTRA_DIST += $(OPENVZ_DRIVER_SOURCES)
|
|
|
|
if WITH_OPENVZ
|
|
noinst_LTLIBRARIES += libvirt_driver_openvz.la
|
|
libvirt_la_BUILT_LIBADD += libvirt_driver_openvz.la
|
|
libvirt_driver_openvz_la_CFLAGS = \
|
|
-I$(srcdir)/conf \
|
|
$(AM_CFLAGS) \
|
|
$(NULL)
|
|
libvirt_driver_openvz_la_SOURCES = $(OPENVZ_DRIVER_SOURCES)
|
|
endif WITH_OPENVZ
|
|
|
|
if WITH_OPENVZ
|
|
USED_SYM_FILES += $(srcdir)/libvirt_openvz.syms
|
|
else ! WITH_OPENVZ
|
|
SYM_FILES += $(srcdir)/libvirt_openvz.syms
|
|
endif ! WITH_OPENVZ
|