mirror of
https://gitlab.uni-freiburg.de/opensourcevdi/spice
synced 2025-12-26 22:48:19 +00:00
Add configuration file for Doxygen. Add a "doxy" target to both Meson and Autoconf using a simple shell script. Signed-off-by: Frediano Ziglio <freddy77@gmail.com> Acked-by: Julien Ropé <jrope@gmail.com>
39 lines
717 B
Makefile
39 lines
717 B
Makefile
NULL =
|
|
ACLOCAL_AMFLAGS = -I m4
|
|
|
|
SUBDIRS = subprojects/spice-common server docs tools
|
|
|
|
if ENABLE_TESTS
|
|
check-valgrind:
|
|
$(MAKE) -C server check-valgrind
|
|
endif
|
|
|
|
pkgconfigdir = $(libdir)/pkgconfig
|
|
pkgconfig_DATA = spice-server.pc
|
|
|
|
DISTCHECK_CONFIGURE_FLAGS = \
|
|
--enable-smartcard \
|
|
--with-sasl \
|
|
--enable-manual \
|
|
$(NULL)
|
|
|
|
EXTRA_DIST = \
|
|
meson.build \
|
|
meson_options.txt \
|
|
build-aux/git-version-gen \
|
|
build-aux/meson/check-spice-common \
|
|
CHANGELOG.md \
|
|
.version \
|
|
$(NULL)
|
|
|
|
# see git-version-gen
|
|
dist-hook:
|
|
echo $(VERSION) > $(distdir)/.tarball-version
|
|
|
|
BUILT_SOURCES = $(top_srcdir)/.version
|
|
$(top_srcdir)/.version:
|
|
echo $(VERSION) > $@-t && mv $@-t $@
|
|
|
|
doxy:
|
|
$(srcdir)/doxygen.sh
|