cantera/test_problems/cathermo/Makefile.in
Harry Moffat af38f45d1d Worked on VPStandardStateTP some more
Fixed an error in IdealMolalSoln -> density wasn't beeing recalculated.
      Updated the test problem with the fix.
Worked CANTERA_DEBUG_MODE into the Makefiles. It wasn't being used.
Split the multiproblem DH_graph_1 test into multiple directories, one per test
Worked on getting all of the test problems to have the same look, feel, and printout.
2007-03-09 21:04:42 +00:00

109 lines
2.8 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
cd DH_graph_acommon; @MAKE@ all
cd DH_graph_bdotak; @MAKE@ all
cd DH_graph_NM; @MAKE@ all
cd DH_graph_Pitzer; @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
cd DH_graph_acommon; @MAKE@ -s test
cd DH_graph_bdotak; @MAKE@ -s test
cd DH_graph_NM; @MAKE@ -s test
cd DH_graph_Pitzer; @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
cd DH_graph_acommon; @MAKE@ clean
cd DH_graph_bdotak; @MAKE@ clean
cd DH_graph_NM; @MAKE@ clean
cd DH_graph_Pitzer; @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
cd DH_graph_acommon; @MAKE@ depends
cd DH_graph_bdotak; @MAKE@ depends
cd DH_graph_NM; @MAKE@ depends
cd DH_graph_Pitzer; @MAKE@ depends
endif