mirror of
https://gitlab.uni-freiburg.de/opensourcevdi/spice-protocol
synced 2025-12-27 15:08:16 +00:00
Files listed as _DATA in Makefile.am are installed without the executable bit set, files listed as _SCRIPT do get the executable bit set. As spice_codegen.py is meant to be run by spice-protocol users, make sure this bit is set.
38 lines
811 B
Makefile
38 lines
811 B
Makefile
NULL =
|
|
ACLOCAL_AMFLAGS = -I m4
|
|
SUBDIRS = python_modules spice
|
|
|
|
codegendir = $(libdir)/spice-protocol
|
|
dist_codegen_DATA = \
|
|
spice.proto \
|
|
spice1.proto \
|
|
$(NULL)
|
|
|
|
dist_codegen_SCRIPTS = \
|
|
spice_codegen.py \
|
|
$(NULL)
|
|
|
|
DISTCLEANFILES = *.pyc
|
|
|
|
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)
|
|
|
|
-include $(top_srcdir)/git.mk
|