-
Notifications
You must be signed in to change notification settings - Fork 3
/
make.inc.in
34 lines (27 loc) · 959 Bytes
/
make.inc.in
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
# PLASMA make.inc template, processed by configure.py
#
# PLASMA is a software package provided by:
# University of Tennessee, US,
# University of Manchester, UK.
# ------------------------------------------------------------------------------
# programs and flags
CC = @CC@
FC = @FC@
RANLIB = ranlib
AR = ar
# Use -fPIC to make shared (.so) and static (.a) libraries;
# can be commented out if making only static libraries.
FPIC = -fPIC
CFLAGS = ${FPIC} @CFLAGS@ @OPENMP_CFLAGS@ @DEFS@
FCFLAGS = ${FPIC} @FCFLAGS@ @OPENMP_FCFLAGS@
LDFLAGS = ${FPIC} @LDFLAGS@ @OPENMP_CFLAGS@
LIBS = @LIBS@
# Enable or disable compiling Fortran 2008 interfaces into PLASMA library
# 0 - disabled
# 1 - enabled; build Fortran interfaces and examples
fortran ?= 0
# where to install PLASMA
prefix ?= /usr/local/plasma
# one of: aix bsd c89 freebsd generic linux macosx mingw posix solaris
# usually generic is fine
lua_platform ?= generic