1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76
|
############################################################################
#
# Three decisions to make:
# 1. Platform
# 2. MPI version or Non-MPI version
# 3. Is libgmp.a available
#
############################################################################
#---------------------------------------------------------------------------
#
# 1. Platform
#
# We have set variables giving information on the archiver, the C compiler
# and the FORTRAN compiler for certain machines in SRC/make.xxx, where xxx
# is your machine name. In the lines that state: PLAT = ... , exactly one of
# the lines must not be commented out. This line corresponds to the machine
# you are on. For example, if you are on a Cray T3E, remove the '#' sign from
# the beginning of the corresponding line. Change the following line:
# #PLAT = T3E # Cray T3E
# to:
# PLAT = T3E # Cray T3E
#
# If the machine you are on is not in the list, please send mail to:
# ashoks@ncsa.uiuc.edu stating the machine you are on. You may also modify
# the make.GENERIC file to suit your machine and continue with the 'make'
# process.
#
#---------------------------------------------------------------------------
#PLAT = CONVEX
#PLAT = DEC
#PLAT = HP
#PLAT = INTEL
#PLAT = O2K
#PLAT = SGI
#PLAT = SP2 # IBM SP2
#PLAT = SUN
# For T3D, Use PLAT=T3E instead
#PLAT = T3E
PLAT = GENERIC
############################################################################
#---------------------------------------------------------------------------
#
# 2. MPI version or Non-MPI version
#
# MPI version: uncomment the following line and
# modify appropriate make.(PLAT) file
#
# Non-MPI version: comment out the following line
#---------------------------------------------------------------------------
#MPIDEF = -DSPRNG_MPI
############################################################################
#---------------------------------------------------------------------------
# 3. Is libgmp.a available
#
# comment out if you want to exclude generator pmlcg which needs libgmp
#---------------------------------------------------------------------------
PMLCGDEF = -DUSE_PMLCG
GMPLIB = -lgmp
############################################################################
#---------------------------------------------------------------------------
# library dir for libsprng.a
# By default, the libraries are placed in the sprng/lib directory.
# You can change this through the variable 'LIB_REL_DIR' below.
#---------------------------------------------------------------------------
LIB_REL_DIR = lib
|