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

26 lines
387 B
Makefile

#!/bin/sh
INST_DIR=@ct_demodir@/python/piston_sim
PYTHON_CMD = @PYTHON_CMD@
run:
$(PYTHON_CMD) piston.py
test:
./runtest
install:
@INSTALL@ -d $(INST_DIR)
@INSTALL@ -c -m ug+rw,o+r piston.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)
clean:
./cleanup
# end of file