mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-01-03 19:45:21 +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>
30 lines
689 B
Makefile
30 lines
689 B
Makefile
# vim: filetype=automake
|
|
|
|
VMWARE_DRIVER_SOURCES = \
|
|
vmware/vmware_driver.c \
|
|
vmware/vmware_driver.h \
|
|
vmware/vmware_conf.c \
|
|
vmware/vmware_conf.h \
|
|
$(NULL)
|
|
|
|
DRIVER_SOURCE_FILES += $(VMWARE_DRIVER_SOURCES)
|
|
|
|
EXTRA_DIST += $(VMWARE_DRIVER_SOURCES)
|
|
|
|
if WITH_VMWARE
|
|
noinst_LTLIBRARIES += libvirt_driver_vmware.la
|
|
libvirt_la_BUILT_LIBADD += libvirt_driver_vmware.la
|
|
libvirt_driver_vmware_la_CFLAGS = \
|
|
-I$(srcdir)/conf \
|
|
-I$(srcdir)/vmx \
|
|
$(AM_CFLAGS) \
|
|
$(NULL)
|
|
libvirt_driver_vmware_la_SOURCES = $(VMWARE_DRIVER_SOURCES)
|
|
endif WITH_VMWARE
|
|
|
|
if WITH_VMWARE
|
|
USED_SYM_FILES += $(srcdir)/libvirt_vmware.syms
|
|
else ! WITH_VMWARE
|
|
SYM_FILES += $(srcdir)/libvirt_vmware.syms
|
|
endif ! WITH_VMWARE
|