mirror of
https://gitlab.uni-freiburg.de/opensourcevdi/spice-protocol
synced 2025-12-26 14:18:31 +00:00
Before renaming README to README.md and NEWS to CHANGELOG.md, we were shipping those files in the tarball. I'm fixing this in autotools because it is a 'regression' while meson.build never had those included. Signed-off-by: Victor Toso <victortoso@redhat.com> Acked-by: Eduardo Lima (Etrunko) <etrunko@redhat.com>
31 lines
681 B
Makefile
31 lines
681 B
Makefile
NULL =
|
|
ACLOCAL_AMFLAGS = -I m4
|
|
SUBDIRS = spice
|
|
|
|
pkgconfigdir = $(datadir)/pkgconfig
|
|
pkgconfig_DATA = spice-protocol.pc
|
|
|
|
MAINTAINERCLEANFILES = \
|
|
$(srcdir)/INSTALL \
|
|
$(srcdir)/aclocal.m4 \
|
|
$(srcdir)/autoscan.log \
|
|
$(srcdir)/compile \
|
|
$(srcdir)/config.guess \
|
|
$(srcdir)/config.h.in \
|
|
$(srcdir)/config.sub \
|
|
$(srcdir)/configure.scan \
|
|
$(srcdir)/depcomp \
|
|
$(srcdir)/install-sh \
|
|
$(srcdir)/ltmain.sh \
|
|
$(srcdir)/missing \
|
|
$(srcdir)/mkinstalldirs \
|
|
`find "$(srcdir)" -type f -name Makefile.in -print` \
|
|
$(NULL)
|
|
|
|
EXTRA_DIST = \
|
|
README.md \
|
|
CHANGELOG.md \
|
|
meson.build
|
|
|
|
-include $(top_srcdir)/git.mk
|