Files
cantera/Cantera/python/examples/Makefile
2006-11-09 21:01:15 +00:00

20 lines
446 B
Makefile

#!/bin/sh
PY_DEMO_DIRS = equilibrium flames gasdynamics kinetics liquid_vapor \
misc reactors surface_chemistry transport fuel_cells
run-all:
@(for d in $(PY_DEMO_DIRS) ; do \
echo "entering directory $${d}..."; \
(cd $${d}; make run) ; \
done)
cleanup:
@(for dd in $(PY_DEMO_DIRS) ; do \
echo "entering directory $${dd}..."; \
(cd $${dd}; make -i clean; cd ..) ; \
done)
# end of file
#