cantera/Cantera/python/examples/reactors/combustor_sim/Makefile.in
2009-03-24 22:41:03 +00:00

29 lines
544 B
Makefile

#!/bin/sh
INST_DIR=@ct_demodir@/python/reactors/combustor_sim
PYTHON_CMD = @PYTHON_CMD@
all:
run:
$(PYTHON_CMD) combustor.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 combustor.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 combustor_blessed_0.csv $(INST_DIR)
clean:
rm -f *.log *.csv *.xml
./cleanup
# end of file