cantera/Cantera/python/examples/equilibrium/Makefile.win
2009-07-15 21:56:11 +00:00

36 lines
569 B
Bash

#!/bin/sh
INST_DIR=@ct_demodir@/python/equilibrium
PY_DEMOS = simple_test stoich_flame adiabatic_flame multiphase_plasma
MAKE = make
all:
$(MAKE) run
run:
@(for py in $(PY_DEMOS) ; do \
echo "running $${py}..."; \
cd "$${py}"; \
$(MAKE) run ; \
cd .. ; \
done)
test:
@(for py in $(PY_DEMOS) ; do \
echo "testing $${py} test"; \
cd "$${py}"; \
$(MAKE) test ; \
cd .. ; \
done)
clean:
@(for py in $(PY_DEMOS) ; do \
cd "$${py}"; \
$(MAKE) clean ; \
cd .. ; \
done)
# end of file