libvirt/src/cpu/Makefile.inc.am
Andrea Bolognani 03a07357e1 maint: Add filetype annotations to Makefile.inc.am
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>
2019-04-12 16:55:38 +02:00

27 lines
490 B
Makefile

# vim: filetype=automake
CPU_SOURCES = \
cpu/cpu.h \
cpu/cpu.c \
cpu/cpu_x86.h \
cpu/cpu_x86.c \
cpu/cpu_x86_data.h \
cpu/cpu_s390.h \
cpu/cpu_s390.c \
cpu/cpu_arm.h \
cpu/cpu_arm.c \
cpu/cpu_ppc64.h \
cpu/cpu_ppc64.c \
cpu/cpu_ppc64_data.h \
cpu/cpu_map.h \
cpu/cpu_map.c \
$(NULL)
noinst_LTLIBRARIES += libvirt_cpu.la
libvirt_la_BUILT_LIBADD += libvirt_cpu.la
libvirt_cpu_la_CFLAGS = \
-I$(srcdir)/conf \
$(AM_CFLAGS) \
$(NULL)
libvirt_cpu_la_SOURCES = $(CPU_SOURCES)