mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-01-11 07:17:44 +00:00
2f1c909991
The files are now completely unused. Remove them. Signed-off-by: Peter Krempa <pkrempa@redhat.com> Reviewed-by: Ján Tomko <jtomko@redhat.com>
29 lines
640 B
Makefile
29 lines
640 B
Makefile
# vim: filetype=automake
|
|
|
|
XENCONFIG_SOURCES = \
|
|
xenconfig/xenxs_private.h \
|
|
xenconfig/xen_common.c \
|
|
xenconfig/xen_common.h \
|
|
xenconfig/xen_xm.c \
|
|
xenconfig/xen_xm.h \
|
|
$(NULL)
|
|
|
|
EXTRA_DIST += $(XENCONFIG_SOURCES)
|
|
|
|
if WITH_XENCONFIG
|
|
noinst_LTLIBRARIES += libvirt_xenconfig.la
|
|
libvirt_la_BUILT_LIBADD += libvirt_xenconfig.la
|
|
libvirt_xenconfig_la_CFLAGS = \
|
|
-I$(srcdir)/conf \
|
|
$(AM_CFLAGS) \
|
|
$(NULL)
|
|
libvirt_xenconfig_la_SOURCES = $(XENCONFIG_SOURCES)
|
|
|
|
endif WITH_XENCONFIG
|
|
|
|
if WITH_XENCONFIG
|
|
USED_SYM_FILES += $(srcdir)/libvirt_xenconfig.syms
|
|
else ! WITH_XENCONFIG
|
|
SYM_FILES += $(srcdir)/libvirt_xenconfig.syms
|
|
endif ! WITH_XENCONFIG
|