cantera/Cantera/python/examples/gasdynamics/Makefile.in
2009-03-24 20:19:15 +00:00

33 lines
505 B
Makefile

#!/bin/sh
PY_DEMOS = isentropic soundSpeed
all:
@(for py in $(PY_DEMOS) ; do \
echo "running $${py}..."; \
(cd $${py} ; @MAKE@ ) \
done)
run:
@(for py in $(PY_DEMOS) ; do \
echo "running $${py}..."; \
(cd $${py} ; @MAKE@ run ) \
done)
test:
@(for py in $(PY_DEMOS) ; do \
echo "running $${py}..."; \
(cd $${py} ; @MAKE@ test ) \
done)
clean:
@(for py in $(PY_DEMOS) ; do \
echo "running $${py}..."; \
(cd $${py} ; @MAKE@ clean ) \
done)
# end of file