Files
cantera/Cantera/python/examples/misc/Makefile
2006-11-08 23:14:10 +00:00

16 lines
197 B
Makefile

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