aboutsummaryrefslogtreecommitdiff
path: root/src/make.configuration.defn
blob: 4c9bacfa8f78b785dd5394aa49c45554cc6e86a0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# additional configuration information for Cactus to build this thorn
# $Header$

# environment variable LAPACK_DIR, if set (should be a black-separated
# list of directories), says where to look for LAPACK/BLAS libraries
ifneq ($(strip $(LAPACK_DIR)), )
  LIBDIRS += $(LAPACK_DIR)
endif

# n.b. lapack and blas need to go at the *front* of other libs
#      since they may use libm etc
# n.b. g2c is needed here if and only if g77 is use for any code
#      (eg on linux lapack/blas rpms are usually built with g77)
LIBS := lapack blas g2c $(LIBS)