xref: /petsc/src/binding/petsc4py/demo/legacy/petsc-examples/ksp/makefile (revision 5a48edb989d3ea10d6aff6c0e26d581c18691deb)
1# -*- makefile -*-
2
3MPIEXEC=mpiexec -n 2
4PYTHON=python3
5
6-include ../../../../../../petscdir.mk
7-include ${PETSC_DIR}/lib/petsc/conf/variables
8
9scripts = ex2 ex23
10
11all: $(scripts)
12
13$(scripts):
14	${PYTHON} $@.py
15	${MPIEXEC} ${PYTHON} $@.py
16