cantera/Cantera/python/examples/flames/stflame1/Makefile.in
2009-03-24 21:45:50 +00:00

26 lines
504 B
Makefile

#!/bin/sh
INST_DIR=@ct_demodir@/python/flames/stflame1
PYTHON_CMD = @PYTHON_CMD@
run:
$(PYTHON_CMD) stflame1.py
test:
./runtest
install:
@INSTALL@ -d $(INST_DIR)
@INSTALL@ -c -m ug+rw,o+r Makefile $(INST_DIR)
@INSTALL@ -c -m ug+rw,o+r stflame1.py $(INST_DIR)
@INSTALL@ -c runtest $(INST_DIR)
@INSTALL@ -c cleanup $(INST_DIR)
@INSTALL@ -c -m ug+rw,o+r output_blessed_0.txt $(INST_DIR)
@INSTALL@ -c -m ug+rw,o+r stflame1_1_blessed_0.csv $(INST_DIR)
clean:
./cleanup
# end of file