mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-12-29 00:55:22 +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>
22 lines
510 B
Makefile
22 lines
510 B
Makefile
# vim: filetype=automake
|
|
|
|
PHYP_DRIVER_SOURCES = \
|
|
phyp/phyp_driver.c \
|
|
phyp/phyp_driver.h \
|
|
$(NULL)
|
|
|
|
DRIVER_SOURCE_FILES += $(PHYP_DRIVER_SOURCES)
|
|
EXTRA_DIST += $(PHYP_DRIVER_SOURCES)
|
|
|
|
if WITH_PHYP
|
|
noinst_LTLIBRARIES += libvirt_driver_phyp.la
|
|
libvirt_la_BUILT_LIBADD += libvirt_driver_phyp.la
|
|
libvirt_driver_phyp_la_LIBADD = $(SSH2_LIBS)
|
|
libvirt_driver_phyp_la_CFLAGS = \
|
|
$(SSH2_CFLAGS) \
|
|
-I$(srcdir)/conf \
|
|
$(AM_CFLAGS) \
|
|
$(NULL)
|
|
libvirt_driver_phyp_la_SOURCES = $(PHYP_DRIVER_SOURCES)
|
|
endif WITH_PHYP
|