mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-12-27 08:05:24 +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>
27 lines
490 B
Makefile
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)
|