cantera/Cantera/python/examples/transport/Makefile.in
2009-03-24 23:50:20 +00:00

28 lines
441 B
Makefile

#!/bin/sh
INST_DIR=@ct_demodir@/python/transport
PYTHON_CMD = @PYTHON_CMD@
all:
run:
$(PYTHON_CMD) dustygas.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 dustygas.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