mirror of
https://github.com/Cantera/cantera.git
synced 2025-02-25 18:55:29 -06:00
17 lines
223 B
Makefile
17 lines
223 B
Makefile
|
|
#!/bin/sh
|
||
|
|
|
||
|
|
PY_DEMOS = rxnpath1.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
|
||
|
|
|