cantera/test_problems/Makefile.in
2006-05-04 02:13:56 +00:00

50 lines
968 B
Makefile

#
# $Revision$
# $Author$
# $Date$
#
#
test_python=@BUILD_PYTHON@
test_ck=@BUILD_CK@
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
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
clean:
$(RM) *.*~
cd cxx_ex; @MAKE@ clean
cd surfkin; @MAKE@ clean
cd fracCoeff; @MAKE@ clean
cd diamondSurf; @MAKE@ clean
ifeq ($(test_ck),1)
cd ck2cti_test; @MAKE@ clean
endif
ifeq ($(test_python),2)
cd python; @MAKE@ clean
endif
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