Removed Makefile in some directories, since it's a generated file in

the configure script.
This commit is contained in:
Harry Moffat
2008-01-15 17:38:07 +00:00
parent 56e023a88b
commit 4f9381cbec
20 changed files with 16 additions and 162 deletions

View File

@@ -0,0 +1,4 @@
Makefile
ct2ctml.log
h2o2.xml
transport_log.xml

View File

@@ -1,16 +0,0 @@
#!/bin/sh
PY_DEMOS = simple.py stoich.py adiabatic.py multiphase_plasma.py
PYTHON_CMD = /Library/Frameworks/Python.framework/Versions/Current/bin/python
run:
@(for py in $(PY_DEMOS) ; do \
echo "running $${py}..."; \
$(PYTHON_CMD) "$${py}"; \
done)
clean:
rm -f *.log *.csv *.xml
# end of file