cantera/test_problems/Makefile.in
2006-06-13 16:06:36 +00:00

57 lines
1.1 KiB
Makefile

#
# $Revision$
# $Author$
# $Date$
#
#
test_python=@BUILD_PYTHON@
test_ck=@BUILD_CK@
test_cathermo=@NEED_CATHERMO@
all:
cd cxx_ex; @MAKE@ all
cd surfkin; @MAKE@ all
cd fracCoeff; @MAKE@ all
cd diamondSurf; @MAKE@ all
ifeq ($(test_ck),1)
cd ck2cti_test; @MAKE@ all
endif
ifeq ($(test_cathermo),1)
cd cathermo; @MAKE@ all
endif
test:
cd cxx_ex; @MAKE@ test
cd surfkin; @MAKE@ test
cd fracCoeff; @MAKE@ test
cd diamondSurf; @MAKE@ test
ifeq ($(test_ck),1)
cd ck2cti_test; @MAKE@ test
endif
ifeq ($(test_python),2)
cd python; @MAKE@ test
endif
ifeq ($(test_cathermo),1)
cd cathermo; @MAKE@ test
endif
clean:
$(RM) *.*~
cd cxx_ex; @MAKE@ clean
cd surfkin; @MAKE@ clean
cd fracCoeff; @MAKE@ clean
cd diamondSurf; @MAKE@ clean
cd ck2cti_test; @MAKE@ clean
cd python; @MAKE@ clean
depends:
cd cxx_ex; @MAKE@ depends
cd surfkin; @MAKE@ depends
cd fracCoeff; @MAKE@ depends
cd diamondSurf; @MAKE@ depends
ifeq ($(test_ck),1)
cd ck2cti_test; @MAKE@ depends
endif
ifeq ($(test_cathermo),1)
cd cathermo; @MAKE@ depends
endif