fix cross-device link error
[PyX.git] / test / functional / Makefile
blobf9747b4a3f13df516b56d7c5de8e03ad3fe2c0f4
1 PYTHON ?= python3
3 pyfiles = $(wildcard *.py)
4 # pyfiles = $(filter-out test_connector.py test_deformer.py,$(wildcard *.py))
5 epsfiles = $(patsubst %.py, %.eps, $(pyfiles))
7 all:
8 make clean
9 make eps
11 clean:
12 -rm -f *.eps eps/*.eps *.pdf *.svg
14 eps: $(epsfiles)
16 %.eps: %.py
17 export PYTHONPATH=$(CURDIR)/../..; cd $(dir $^) ; $(PYTHON) -W default $(notdir $^)