mirror of
https://gitlab.uni-freiburg.de/opensourcevdi/spice-protocol
synced 2025-12-26 22:55:30 +00:00
Having the RPM spec file produced by the build is helpful in different situation. Different tools like mock or code scanners accept source RPMs as input. Providing this file allows easily build of the source RPM (and binaries) using a simple command like $ rpmbuild -ta spice-protocol-XXXX.tar.bz2 Signed-off-by: Frediano Ziglio <fziglio@redhat.com> Signed-off-by: Victor Toso <victortoso@redhat.com> Acked-by: Eduardo Lima (Etrunko) <etrunko@redhat.com>
32 lines
708 B
Makefile
32 lines
708 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 \
|
|
spice-protocol.spec \
|
|
meson.build
|
|
|
|
-include $(top_srcdir)/git.mk
|