enable warnings and fix issues reported by that
[PyX.git] / test / functional / Makefile
blobd89e76890da2de5e99eb7a8177449207151766e3
1 PYTHON ?= python3
3 pyfiles = $(wildcard *.py)
4 epsfiles = $(patsubst %.py, %.eps, $(pyfiles))
6 all:
7 make clean
8 make eps
10 clean:
11 -rm -f *.eps eps/*.eps *.pdf
13 eps: $(epsfiles)
15 %.eps: %.py
16 export PYTHONPATH=$(CURDIR)/../..; cd $(dir $^) ; $(PYTHON) -W default $(notdir $^)