added Makefiles to run all demos

This commit is contained in:
Dave Goodwin
2006-11-08 23:14:10 +00:00
parent 671492566d
commit 80f10dbf48
11 changed files with 163 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
#!/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