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.pgf95 2.5 kB

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