1# -*- makefile -*- 2 3MPIEXEC= 4PYTHON=python 5 6-include ../../../../../petscdir.mk 7-include ${PETSC_DIR}/lib/petsc/conf/variables 8 9.PHONY:test 10test: run clean 11 12.PHONY:run 13run: 14 ${MPIEXEC} ${PYTHON} poisson2d.py -nx 15 -ny 16 15 16.PHONY:clean 17clean: 18 ${RM} *.py[co] 19 ${RM} -r __pycache__ 20