xref: /petsc/src/binding/petsc4py/demo/legacy/poisson2d/makefile (revision 5a48edb989d3ea10d6aff6c0e26d581c18691deb)
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