mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-01-30 00:15:21 +00:00
f4eb27a9b4
Previously we generated all source files into $srcdir which is no longer true. This means that we can't just blindly prepend each source file with $srcdir. Signed-off-by: Michal Privoznik <mprivozn@redhat.com> Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
31 lines
742 B
Makefile
31 lines
742 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 += $(addprefix $(srcdir)/,$(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
|