cantera/Cantera/python/examples/liquid_vapor/Makefile.in

42 lines
705 B
Makefile

#!/bin/sh
INST_DIR=@ct_demodir@/python/liquid_vapor
PY_DEMOS = critProperties rankine
all:
@(for py in $(PY_DEMOS) ; do \
(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 "testing $${py}..."; \
(cd $${py} ; @MAKE@ test) \
done)
install:
@INSTALL@ -d $(INST_DIR)
@INSTALL@ -c -m ug+rw,o+r Makefile $(INST_DIR)
@(for py in $(PY_DEMOS) ; do \
echo "installing $${py}..."; \
(cd $${py} ; @MAKE@ install) \
done)
clean:
@(for py in $(PY_DEMOS) ; do \
echo "cleaning $${py}..."; \
(cd $${py} ; @MAKE@ clean) \
done)
# end of file