2014-12-15 19:12:47 +01:00
|
|
|
vips_overridesdir = $(pyoverridesdir)
|
|
|
|
vips_overrides_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:
|
2014-12-15 19:12:47 +01:00
|
|
|
for f in $(vips_overrides_PYTHON); do \
|
2014-12-10 16:31:22 +01:00
|
|
|
[ -e $(builddir)/$$f ] || $(LN_S) $(srcdir)/$$f $(builddir)/$$f; \
|
|
|
|
done
|
|
|
|
|
|
|
|
all-local: build_pylinks
|
|
|
|
check-local: build_pylinks
|
|
|
|
|