cantera/test_problems/cathermo/Makefile.in
Harry Moffat 4f8d4268bf Doxygen update for StoichSubstanceSSTP
Added test problem for  StoichSubstanceSSTP.
2007-02-28 03:00:53 +00:00

93 lines
2.3 KiB
Makefile

#
# $Revision$
# $Author$
# $Date$
#
#
test_issp=@COMPILE_IDEAL_SOLUTIONS@
test_electrolytes=@COMPILE_ELECTROLYTES@
all:
ifeq ($(test_issp),1)
cd issp; @MAKE@ all
cd stoichSubSSTP; @MAKE@ all
endif
ifeq ($(test_electrolytes),1)
cd ims; @MAKE@ all
cd testIAPWS; @MAKE@ all
cd testIAPWSPres; @MAKE@ all
cd testIAPWSTripP; @MAKE@ all
cd testWaterPDSS; @MAKE@ all
cd testWaterTP; @MAKE@ all
cd HMW_graph_GvT; @MAKE@ all
cd HMW_graph_GvI; @MAKE@ all
cd HMW_graph_HvT; @MAKE@ all
cd HMW_graph_CpvT; @MAKE@ all
cd HMW_graph_VvT; @MAKE@ all
cd HMW_test_1; @MAKE@ all
cd HMW_test_3; @MAKE@ all
cd DH_graph_1; @MAKE@ all
endif
test:
ifeq ($(test_issp),1)
cd issp; @MAKE@ -s test
cd stoichSubSSTP; @MAKE@ -s test
endif
ifeq ($(test_electrolytes),1)
cd ims; @MAKE@ -s test
cd testIAPWS; @MAKE@ -s test
cd testIAPWSPres; @MAKE@ -s test
cd testIAPWSTripP; @MAKE@ -s test
cd testWaterPDSS; @MAKE@ -s test
cd testWaterTP; @MAKE@ -s test
cd HMW_graph_GvT; @MAKE@ -s test
cd HMW_graph_GvI; @MAKE@ -s test
cd HMW_graph_HvT; @MAKE@ -s test
cd HMW_graph_CpvT; @MAKE@ -s test
cd HMW_graph_VvT; @MAKE@ -s test
cd HMW_test_1; @MAKE@ -s test
cd HMW_test_3; @MAKE@ -s test
cd DH_graph_1; @MAKE@ -s test
endif
clean:
$(RM) *.*~
cd issp; @MAKE@ clean
cd stoichSubSSTP; @MAKE@ clean
cd ims; @MAKE@ clean
cd testIAPWS; @MAKE@ clean
cd testIAPWSPres; @MAKE@ clean
cd testIAPWSTripP; @MAKE@ clean
cd testWaterPDSS; @MAKE@ clean
cd testWaterTP; @MAKE@ clean
cd HMW_graph_GvT; @MAKE@ clean
cd HMW_graph_GvI; @MAKE@ clean
cd HMW_graph_HvT; @MAKE@ clean
cd HMW_graph_CpvT; @MAKE@ clean
cd HMW_graph_VvT; @MAKE@ clean
cd HMW_test_1; @MAKE@ clean
cd HMW_test_3; @MAKE@ clean
cd DH_graph_1; @MAKE@ clean
depends:
ifeq ($(test_issp),1)
cd issp; @MAKE@ depends
cd stoichSubSSTP; @MAKE@ clean
endif
ifeq ($(test_electrolytes),1)
cd ims; @MAKE@ depends
cd testIAPWS; @MAKE@ depends
cd testIAPWSPres; @MAKE@ depends
cd testIAPWSTripP; @MAKE@ depends
cd testWaterPDSS; @MAKE@ depends
cd testWaterTP; @MAKE@ depends
cd HMW_graph_GvT; @MAKE@ depends
cd HMW_graph_GvI; @MAKE@ depends
cd HMW_graph_HvT; @MAKE@ depends
cd HMW_graph_CpvT; @MAKE@ depends
cd HMW_graph_VvT; @MAKE@ depends
cd HMW_test_1; @MAKE@ depends
cd HMW_test_3; @MAKE@ depends
cd DH_graph_1; @MAKE@ depends
endif