cantera/test_problems/Makefile.in
Harry Moffat 2f5bf8b7fb Added a new test that pretty much mimics the frac python test.
It does add tests for the calculation of equilibrium constants
for fractional coefficient reactions.
2006-04-30 18:06:56 +00:00

47 lines
970 B
Makefile

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