xref: /petsc/src/mat/impls/aij/seq/ftn-kernels/makefile (revision 84df9cb40eca90ea9b18a456fab7a4ecc7f6c1a4)
1
2# This directory contains some computational kernels written in
3# Fortran77.  These are mainly intended to provide high performance for
4# COMPLEX arithmetic (since most C++ compilers do not do a good job
5# optimizing complex number calculations), but can also be used to
6# compare against C versions of the same kernels.
7
8ALL: lib
9#requiresdefine   'PETSC_USE_FORTRAN_KERNELS'
10
11CFLAGS   =
12FFLAGS   =
13SOURCEC  =
14SOURCEF  = fmult.F fmultadd.F fsolve.F frelax.F
15SOURCEH  =
16OBJSC    =
17OBJSF    = fmult.o fmultadd.o fsolve.o frelax.o
18LIBBASE  = libpetscmat
19MANSEC   = Sys
20LOCDIR   = src/mat/impls/aij/seq/ftn-kernels/
21DIRS     =
22
23include ${PETSC_DIR}/conf/variables
24include ${PETSC_DIR}/conf/rules
25include ${PETSC_DIR}/conf/test
26
27
28