cantera/Cantera/python/examples/equilibrium/Makefile.in
2008-01-11 21:54:42 +00:00

16 lines
265 B
Makefile

#!/bin/sh
PY_DEMOS = simple.py stoich.py adiabatic.py multiphase_plasma.py
PYTHON_CMD = @PYTHON_CMD@
run:
@(for py in $(PY_DEMOS) ; do \
echo "running $${py}..."; \
$(PYTHON_CMD) "$${py}"; \
done)
clean:
rm -f *.log *.csv *.xml
# end of file