You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

make.inc.O2K 2.7 kB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. ####################################################################
  2. # LAPACK make include file. #
  3. # LAPACK, Version 3.7.0 #
  4. # December 2016 #
  5. ####################################################################
  6. SHELL = /sbin/sh
  7. # CC is the C compiler, normally invoked with options CFLAGS.
  8. #
  9. CC = cc
  10. CFLAGS = -O3
  11. # Modify the FC and FFLAGS definitions to the desired compiler
  12. # and desired compiler options for your machine. NOOPT refers to
  13. # the compiler options desired when NO OPTIMIZATION is selected.
  14. #
  15. FC = f77
  16. FFLAGS = -O3 -64 -mips4 -r10000
  17. #FFLAGS = -O3 -64 -mips4 -r10000 -mp
  18. FFLAGS_DRV = $(FFLAGS) -static
  19. FFLAGS_NOOPT = -64 -mips4 -r10000
  20. #FFLAGS_NOOPT = -64 -mips4 -r10000 -mp
  21. # Define LDFLAGS to the desired linker options for your machine.
  22. #
  23. LDFLAGS =
  24. # The archiver and the flag(s) to use when building an archive
  25. # (library). If your system has no ranlib, set RANLIB = echo.
  26. #
  27. AR = ar
  28. ARFLAGS = cr
  29. RANLIB = echo
  30. # Timer for the SECOND and DSECND routines
  31. #
  32. # Default: SECOND and DSECND will use a call to the
  33. # EXTERNAL FUNCTION ETIME
  34. TIMER = EXT_ETIME
  35. # For RS6K: SECOND and DSECND will use a call to the
  36. # EXTERNAL FUNCTION ETIME_
  37. #TIMER = EXT_ETIME_
  38. # For gfortran compiler: SECOND and DSECND will use a call to the
  39. # INTERNAL FUNCTION ETIME
  40. #TIMER = INT_ETIME
  41. # If your Fortran compiler does not provide etime (like Nag Fortran
  42. # Compiler, etc...) SECOND and DSECND will use a call to the
  43. # INTERNAL FUNCTION CPU_TIME
  44. #TIMER = INT_CPU_TIME
  45. # If none of these work, you can use the NONE value.
  46. # In that case, SECOND and DSECND will always return 0.
  47. #TIMER = NONE
  48. # Uncomment the following line to include deprecated routines in
  49. # the LAPACK library.
  50. #
  51. #BUILD_DEPRECATED = Yes
  52. # LAPACKE has the interface to some routines from tmglib.
  53. # If LAPACKE_WITH_TMG is defined, add those routines to LAPACKE.
  54. #
  55. #LAPACKE_WITH_TMG = Yes
  56. # Location of the extended-precision BLAS (XBLAS) Fortran library
  57. # used for building and testing extended-precision routines. The
  58. # relevant routines will be compiled and XBLAS will be linked only
  59. # if USEXBLAS is defined.
  60. #
  61. #USEXBLAS = Yes
  62. #XBLASLIB = -lxblas
  63. # The location of the libraries to which you will link. (The
  64. # machine-specific, optimized BLAS library should be used whenever
  65. # possible.)
  66. #
  67. BLASLIB = -lblas
  68. #BLASLIB = -lblas_mp
  69. #BLASLIB = $(TOPSRCDIR)/librefblas.a
  70. CBLASLIB = $(TOPSRCDIR)/libcblas.a
  71. LAPACKLIB = $(TOPSRCDIR)/liblapack.a
  72. TMGLIB = $(TOPSRCDIR)/libtmglib.a
  73. LAPACKELIB = $(TOPSRCDIR)/liblapacke.a