mirror of
https://github.com/Cantera/cantera.git
synced 2025-02-25 18:55:29 -06:00
16 lines
197 B
Makefile
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
|
|
|