cantera/test_problems/cathermo/Makefile.in
2006-07-06 21:54:16 +00:00

85 lines
2 KiB
Makefile

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