xref: /petsc/src/mat/ftn-kernels/makefile (revision 7d0a6c19129e7069c8a40e210b34ed62989173db)
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  = sgemv.F
15SOURCEH  =
16OBJSC    =
17OBJSF    = sgemv.o
18LIBBASE  = libpetscmat
19MANSEC   = Sys
20LOCDIR   = src/mat/ftn-kernels/
21
22include ${PETSC_DIR}/conf/variables
23include ${PETSC_DIR}/conf/rules
24include ${PETSC_DIR}/conf/test
25
26
27