add UnicodeEngine (MultiEngineText and axis texters returning MultiEngineText), texte...
[PyX.git] / test / functional / Makefile
blobd0ce82926d83b37215885360ed276c87b87ffe03
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 $^)