Files
cantera/Cantera/python/examples/equilibrium/Makefile.in
2009-03-19 14:35:55 +00:00

35 lines
553 B
Makefile

#!/bin/sh
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 "running $${py} test"; \
cd "$${py}"; \
$(MAKE) test ; \
cd .. ; \
done)
clean:
rm -f *.log *.csv *.xml
@(for py in $(PY_DEMOS) ; do \
cd "$${py}"; \
$(MAKE) clean ; \
cd .. ; \
done)
# end of file