cantera/test_problems/Makefile.in
Harry Moffat 0496f6a69b First cut at getting rid of the false bad test results for the
python = none option. min_python dir will include the
minimal python installation tests
2006-06-20 23:03:32 +00:00

67 lines
1.3 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_python),1)
cd min_python; @MAKE@ all
endif
ifeq ($(test_python),2)
cd min_python; @MAKE@ all
endif
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),1)
cd min_python; @MAKE@ test
endif
ifeq ($(test_python),2)
cd min_python; @MAKE@ test
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