libvips/python/Makefile.am

20 lines
465 B
Makefile
Raw Normal View History

2014-10-14 15:56:49 +02:00
pygioverridesdir = $(pyexecdir)/gi/overrides
pygioverrides_PYTHON = \
Vips.py
2014-11-03 13:01:53 +01:00
EXTRA_DIST = \
2014-12-10 16:31:22 +01:00
README.md
# if we build in a separate tree, we need to symlink the *.py files from the
# source tree; Python does not accept the extensions and modules in different
# paths
build_pylinks:
for f in $(pygioverrides_PYTHON); do \
[ -e $(builddir)/$$f ] || $(LN_S) $(srcdir)/$$f $(builddir)/$$f; \
done
all-local: build_pylinks
check-local: build_pylinks