mirror of
https://gitlab.uni-freiburg.de/opensourcevdi/spice
synced 2025-12-26 14:41:25 +00:00
The spicec client is no longer actively maintained. By removing cegui from distcheck, we can avoid extra build time and dependencies (>150Mb extra cegui/boost on fedora) Slirp is not available in most distributions, afaict, making it hard to build consistantly accross various systems. The client is still build if the dependencies are present.
19 lines
309 B
Makefile
19 lines
309 B
Makefile
NULL =
|
|
ACLOCAL_AMFLAGS = -I m4
|
|
|
|
SUBDIRS = spice-common server
|
|
|
|
if SUPPORT_CLIENT
|
|
SUBDIRS += client
|
|
endif
|
|
|
|
pkgconfigdir = $(libdir)/pkgconfig
|
|
pkgconfig_DATA = spice-server.pc
|
|
|
|
DISTCHECK_CONFIGURE_FLAGS = \
|
|
--enable-automated-tests \
|
|
--enable-opengl \
|
|
--enable-smartcard \
|
|
--with-sasl \
|
|
$(NULL)
|