xLA_xxRFSX_EXTENDED; parameter comments: pull various dimension specifications contai...
[platform/upstream/lapack.git] / INSTALL / make.inc.ALPHA
1 ####################################################################
2 #  LAPACK make include file.                                       #
3 #  LAPACK, Version 3.7.0                                           #
4 #  December 2016                                                   #
5 ####################################################################
6
7 SHELL = /bin/sh
8
9 #  CC is the C compiler, normally invoked with options CFLAGS.
10 #
11 CC     = cc
12 CFLAGS = -O4
13
14 #  Modify the FORTRAN and OPTS definitions to refer to the compiler
15 #  and desired compiler options for your machine.  NOOPT refers to
16 #  the compiler options desired when NO OPTIMIZATION is selected.
17 #
18 FORTRAN = f77
19 OPTS    = -O4 -fpe1
20 DRVOPTS = $(OPTS)
21 NOOPT   =
22
23 #  Define LOADER and LOADOPTS to refer to the loader and desired
24 #  load options for your machine.
25 #
26 LOADER   = f77
27 LOADOPTS =
28
29 #  The archiver and the flag(s) to use when building an archive
30 #  (library).  If your system has no ranlib, set RANLIB = echo.
31 #
32 ARCH      = ar
33 ARCHFLAGS = cr
34 RANLIB    = ranlib
35
36 #  Timer for the SECOND and DSECND routines
37 #
38 #  Default:  SECOND and DSECND will use a call to the
39 #  EXTERNAL FUNCTION ETIME
40 TIMER = EXT_ETIME
41 #  For RS6K:  SECOND and DSECND will use a call to the
42 #  EXTERNAL FUNCTION ETIME_
43 #TIMER = EXT_ETIME_
44 #  For gfortran compiler:  SECOND and DSECND will use a call to the
45 #  INTERNAL FUNCTION ETIME
46 #TIMER = INT_ETIME
47 #  If your Fortran compiler does not provide etime (like Nag Fortran
48 #  Compiler, etc...) SECOND and DSECND will use a call to the
49 #  INTERNAL FUNCTION CPU_TIME
50 #TIMER = INT_CPU_TIME
51 #  If none of these work, you can use the NONE value.
52 #  In that case, SECOND and DSECND will always return 0.
53 #TIMER = NONE
54
55 #  Uncomment the following line to include deprecated routines in
56 #  the LAPACK library.
57 #
58 #BUILD_DEPRECATED = Yes
59
60 #  LAPACKE has the interface to some routines from tmglib.
61 #  If LAPACKE_WITH_TMG is defined, add those routines to LAPACKE.
62 #
63 #LAPACKE_WITH_TMG = Yes
64
65 #  Location of the extended-precision BLAS (XBLAS) Fortran library
66 #  used for building and testing extended-precision routines.  The
67 #  relevant routines will be compiled and XBLAS will be linked only
68 #  if USEXBLAS is defined.
69 #
70 #USEXBLAS = Yes
71 #XBLASLIB = -lxblas
72
73 #  The location of the libraries to which you will link.  (The
74 #  machine-specific, optimized BLAS library should be used whenever
75 #  possible.)
76 #
77 #BLASLIB      = ../../librefblas.a
78 BLASLIB      = -ldxml
79 CBLASLIB     = ../../libcblas.a
80 LAPACKLIB    = liblapack.a
81 TMGLIB       = libtmglib.a
82 LAPACKELIB   = liblapacke.a