80 lines
1.6 KiB
Makefile
80 lines
1.6 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 negATest; @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 negATest; @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 negATest; @MAKE@ clean
|
|
cd diamondSurf; @MAKE@ clean
|
|
cd ck2cti_test; @MAKE@ clean
|
|
cd min_python; @MAKE@ clean
|
|
cd python; @MAKE@ clean
|
|
cd cathermo; @MAKE@ clean
|
|
|
|
depends:
|
|
cd cxx_ex; @MAKE@ depends
|
|
cd surfkin; @MAKE@ depends
|
|
cd fracCoeff; @MAKE@ depends
|
|
cd negATest; @MAKE@ depends
|
|
cd diamondSurf; @MAKE@ depends
|
|
ifeq ($(test_ck),1)
|
|
cd ck2cti_test; @MAKE@ depends
|
|
endif
|
|
ifeq ($(test_python),1)
|
|
cd min_python; @MAKE@ depends
|
|
endif
|
|
ifeq ($(test_python),2)
|
|
cd min_python; @MAKE@ depends
|
|
cd python; @MAKE@ depends
|
|
endif
|
|
ifeq ($(test_cathermo),1)
|
|
cd cathermo; @MAKE@ depends
|
|
endif
|