# $Id: makefile,v 1.39 2001/08/22 18:02:24 balay Exp $ 

CFLAGS	        = 
FFLAGS	        = 
CPPFLAGS        =
FPPFLAGS        =
LOCDIR          = src/ts/examples/tests/
EXAMPLESC       = ex1.c ex2.c ex4.c
EXAMPLESF       = ex1f.F
MANSEC          = TS

include ${PETSC_DIR}/bmake/common/base

ex1: ex1.o  chkopts
	-${CLINKER} -o ex1 ex1.o  ${PETSC_TS_LIB}
	${RM} ex1.o

ex1f: ex1f.o  chkopts
	-${FLINKER} -o ex1f ex1f.o  ${PETSC_FORTRAN_LIB} ${PETSC_TS_LIB}
	${RM} ex1f.o

ex2: ex2.o  chkopts
	-${CLINKER} -o ex2 ex2.o -L${PETSC_LIB_DIR} -lpetscts ${PETSC_TS_LIB}
	${RM} ex2.o

ex3: ex3.o  chkopts
	-${CLINKER} -o ex3 ex3.o -L${PETSC_LIB_DIR} -lpetscts 
	${RM} ex3.o

ex4: ex4.o  chkopts
	-${CLINKER} -o ex4 ex4.o -L${PETSC_LIB_DIR} -lpetscts ${PETSC_TS_LIB}
	${RM} ex4.o

ex5: ex5.o  chkopts
	-${CLINKER} -o ex5 ex5.o -L${PETSC_LIB_DIR} -lpetscts ${PETSC_TS_LIB}
	${RM} ex5.o

ex6: ex6.o  chkopts
	-${CLINKER} -o ex6 ex6.o ${PETSC_TS_LIB}
	${RM} ex6.o

ex7: ex7.o  chkopts
	-${CLINKER} -o ex7 ex7.o ${PETSC_TS_LIB}
	${RM} ex7.o

ex8: ex8.o  chkopts
	-${CLINKER} -o ex8 ex8.o ${PETSC_TS_LIB}
	${RM} ex8.o

ex9: ex9.o  chkopts
	-${CLINKER} -o ex9 ex9.o ${PETSC_TS_LIB}
	${RM} ex9.o

ex10: ex10.o  chkopts
	-${CLINKER} -o ex10 ex10.o ${PETSC_TS_LIB}
	${RM} ex10.o

ex11: ex11.o  chkopts
	-${CLINKER} -o ex11 ex11.o ${PETSC_TS_LIB}
	${RM} ex11.o

ex12: ex12.o  chkopts
	-${FLINKER} -o ex12 ex12.o ${PETSC_FORTRAN_LIB} ${PETSC_TS_LIB}
	${RM} ex12.o
#----------------------------------------------------------------------------------
runex1:
	-@${MPIRUN} -np 1 ex1 -test -nox -ts_type euler  -linear_no_matrix
	-@${MPIRUN} -np 1 ex1 -test -nox -ts_type euler -nonlinear_no_jacobian 
	-@${MPIRUN} -np 1 ex1 -test -nox -ts_type euler -linear_constant_matrix  
	-@${MPIRUN} -np 1 ex1 -test -nox -ts_type euler -linear_variable_matrix 
	-@${MPIRUN} -np 1 ex1 -test -nox -ts_type euler  -nonlinear_jacobian 
	-@${MPIRUN} -np 1 ex1 -test -nox -ts_type beuler -ksp_gmres_cgs_refinement_type always -linear_no_matrix -pc_type none
	-@${MPIRUN} -np 1 ex1 -test -nox -ts_type beuler -ksp_gmres_cgs_refinement_type always -nonlinear_no_jacobian -pc_type none
	-@${MPIRUN} -np 1 ex1 -test -nox -ts_type beuler -ksp_gmres_cgs_refinement_type always -linear_constant_matrix  -pc_type lu 
	-@${MPIRUN} -np 1 ex1 -test -nox -ts_type beuler -ksp_gmres_cgs_refinement_type always -linear_variable_matrix 
	-@${MPIRUN} -np 1 ex1 -test -nox -ts_type beuler -ksp_gmres_cgs_refinement_type always -nonlinear_jacobian 

runex1f:
	-@${MPIRUN} -np 1 ex1f -test -nox -ts_type euler  -linear_no_matrix
	-@${MPIRUN} -np 1 ex1f -test -nox -ts_type euler -nonlinear_no_jacobian 
	-@${MPIRUN} -np 1 ex1f -test -nox -ts_type euler -linear_constant_matrix  
	-@${MPIRUN} -np 1 ex1f -test -nox -ts_type euler -linear_variable_matrix 
	-@${MPIRUN} -np 1 ex1f -test -nox -ts_type euler -nonlinear_jacobian 
	-@${MPIRUN} -np 1 ex1f -test -nox -ts_type beuler -ksp_gmres_cgs_refinement_type always -linear_no_matrix -pc_type none
	-@${MPIRUN} -np 1 ex1f -test -nox -ts_type beuler -ksp_gmres_cgs_refinement_type always -nonlinear_no_jacobian -pc_type none
	-@${MPIRUN} -np 1 ex1f -test -nox -ts_type beuler -ksp_gmres_cgs_refinement_type always -linear_constant_matrix  -pc_type lu 
	-@${MPIRUN} -np 1 ex1f -test -nox -ts_type beuler -ksp_gmres_cgs_refinement_type always -linear_variable_matrix 
	-@${MPIRUN} -np 1 ex1f -test -nox -ts_type beuler -ksp_gmres_cgs_refinement_type always -nonlinear_jacobian 

TESTEXAMPLES_1  = ex1.PETSc  runex1  ex1.rm 
TESTEXAMPLES_2  = 
TESTEXAMPLES_3  = ex1f.PETSc runex1f ex1f.rm
TESTEXAMPLES_4  = 
TESTEXAMPLES_13 = ex2.PETSc ex2.rm ex4.PETSc ex4.rm 

include ${PETSC_DIR}/bmake/common/test