mirror of
https://github.com/Cantera/cantera.git
synced 2025-02-25 18:55:29 -06:00
50 lines
902 B
Makefile
50 lines
902 B
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
|
|
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
|
|
endif
|
|
|
|
clean:
|
|
$(RM) *.*~
|
|
cd issp; @MAKE@ clean
|
|
cd ims; @MAKE@ clean
|
|
cd testIAPWS; @MAKE@ clean
|
|
cd testIAPWSPres; @MAKE@ clean
|
|
cd testIAPWSTripP; @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
|
|
endif
|