mirror of
https://gitlab.uni-freiburg.de/opensourcevdi/spice-common
synced 2025-12-25 12:28:08 +00:00
Allow the user to disable tests through --disable-tests, this is especially useful for example to disable gdk-pixbuf dependency Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Acked-by: Frediano Ziglio <fziglio@redhat.com>
34 lines
663 B
Makefile
34 lines
663 B
Makefile
NULL =
|
|
ACLOCAL_AMFLAGS = -I m4
|
|
|
|
SUBDIRS = python_modules common docs
|
|
|
|
if ENABLE_TESTS
|
|
SUBDIRS += tests
|
|
endif
|
|
|
|
EXTRA_DIST = \
|
|
meson.build \
|
|
meson_options.txt \
|
|
spice_codegen.py \
|
|
spice.proto \
|
|
$(NULL)
|
|
|
|
DISTCLEANFILES = *.pyc
|
|
|
|
MAINTAINERCLEANFILES = \
|
|
$(srcdir)/INSTALL \
|
|
$(srcdir)/aclocal.m4 \
|
|
$(srcdir)/autoscan.log \
|
|
$(srcdir)/build-aux \
|
|
$(srcdir)/config.h.in \
|
|
$(srcdir)/m4/libtool.m4 \
|
|
$(srcdir)/m4/ltoptions.m4 \
|
|
$(srcdir)/m4/ltsugar.m4 \
|
|
$(srcdir)/m4/ltversion.m4 \
|
|
$(srcdir)/m4/lt~obsolete.m4 \
|
|
`find "$(srcdir)" -type f -name Makefile.in -print` \
|
|
$(NULL)
|
|
|
|
-include $(top_srcdir)/git.mk
|