mirror of
https://gitlab.uni-freiburg.de/opensourcevdi/spice
synced 2025-12-31 20:04:09 +00:00
We will prefer CHANGELOG over NEWS just as matter of Gitlab's. Followup patch will move NEWS content to CHANGELOG. This patch renames NEWS -> CHANGELOG.md. The change in configure.ac is necessary as GNU style requires a NEWS file to be present. Signed-off-by: Frediano Ziglio <fziglio@redhat.com> Acked-by: Victor Toso <victortoso@redhat.com>
45 lines
1.1 KiB
Makefile
45 lines
1.1 KiB
Makefile
NULL =
|
|
ACLOCAL_AMFLAGS = -I m4
|
|
|
|
SUBDIRS = subprojects/spice-common server docs tools
|
|
|
|
check-valgrind:
|
|
$(MAKE) -C server check-valgrind
|
|
|
|
pkgconfigdir = $(libdir)/pkgconfig
|
|
pkgconfig_DATA = spice-server.pc
|
|
|
|
DISTCHECK_CONFIGURE_FLAGS = \
|
|
--disable-celt051 \
|
|
--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)
|
|
|
|
# Generate the ChangeLog file (with all entries since the switch to git)
|
|
# and insert it into the directory we're about to use to create a tarball.
|
|
.PHONY: gen-ChangeLog
|
|
gen-ChangeLog:
|
|
if test -d .git || test -d ../.git; then \
|
|
$(top_srcdir)/build-aux/gitlog-to-changelog > $(distdir)/cl-t; \
|
|
rm -f $(distdir)/ChangeLog; \
|
|
mv $(distdir)/cl-t $(distdir)/ChangeLog; \
|
|
fi
|
|
|
|
# see git-version-gen
|
|
dist-hook: gen-ChangeLog
|
|
echo $(VERSION) > $(distdir)/.tarball-version
|
|
|
|
BUILT_SOURCES = $(top_srcdir)/.version
|
|
$(top_srcdir)/.version:
|
|
echo $(VERSION) > $@-t && mv $@-t $@
|