28 lines
561 B
Makefile
28 lines
561 B
Makefile
#!/bin/sh
|
|
|
|
INST_DIR=@ct_demodir@/python/equilibrium/multiphase_plasma
|
|
|
|
|
|
PYTHON_CMD = @PYTHON_CMD@
|
|
|
|
run:
|
|
$(PYTHON_CMD) multiphase_plasma.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 multiphase_plasma.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 equil_koh_blessed_0.csv $(INST_DIR)
|
|
|
|
clean:
|
|
rm -f *.log *.csv *.xml
|
|
./cleanup
|
|
|
|
# end of file
|
|
|