-
Notifications
You must be signed in to change notification settings - Fork 0
/
MakeVars
107 lines (84 loc) · 2.24 KB
/
MakeVars
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
# Emacs should use -*- Makefile -*- mode.
ifndef SRCDIR
SRCDIR = .
endif
SRCTOPDIR = $(SRCDIR)/$(TO_TOPDIR)
top_builddir = $(TO_TOPDIR)
host = powerpc64le-unknown-linux-gnu
host_cpu = powerpc64le
host_vendor = unknown
host_os = linux-gnu
target = powerpc64le-unknown-linux-gnu
target_cpu = powerpc64le
target_vendor = unknown
target_os = linux-gnu
LIBINT_VERSION = 2.5.0
LIBINT_SO_VERSION = 2:3:0
BUILDID =
# The object code suffix
OBJSUF = lo
# The library suffix
LIBSUF = la
ENABLESHARED = yes
ifeq ($(ENABLESHARED),yes)
SHELL = /bin/sh # LIBTOOL will provide the appropriate shell here
LIBTOOL = $(SHELL) $(TOPDIR)/libtool --quiet
LTLINK = $(LIBTOOL) --mode=link --tag=CXX # LIBTOOL needs clues in some settings
ifneq ($(BUILDID),)
LTLINKLIBOPTS = -rpath $(libdir) -release $(BUILDID) -version-info $(LIBINT_SO_VERSION)
else
LTLINKLIBOPTS = -rpath $(libdir) -version-info $(LIBINT_SO_VERSION)
endif
LTLINKBINOPTS =
LTCOMP = $(LIBTOOL) --mode=compile --tag=CXX
LTINST = $(LIBTOOL) --mode=install --tag=CXX
else
LIBTOOL=
LTLINK =
LTLINKLIBOPTS =
LTLINKBINOPTS =
LTCOMP =
LTINST =
endif
# The suffix generated by the -M compiler option
CXXDEPENDSUF = none
CXXDEPENDFLAGS = -M
CXX = g++
CXXDEPEND = g++
CXXCPP = g++ -E
ENABLE_FORTRAN = no
FC =
FCLIBS =
AR = ar
ARFLAGS = r
LD = /sw/summit/xalt/1.1.3/bin/ld
LDFLAGS =
CC = gcc
INSTALL = /usr/bin/install -c
INSTALLDIROPT = -d -m 0755
INSTALLLIBOPT = -m 0644
INSTALLBINOPT = -m 0755
INSTALLSCRIPTOPT = -m 0755
prefix=/ccs/home/agriffith/libint_build
exec_prefix=${prefix}
bindir=${exec_prefix}/bin
libdir=${exec_prefix}/lib
includedir=${prefix}/include
pkgconfigdir=$(libdir)/pkgconfig
datadir=${prefix}/share/libint/$(LIBINT_VERSION)
RANLIB = ranlib
COMPRESS = gzip
UNCOMPRESS = gzip -d
PYTHON = python
# first check for generated include files in the machine dependent directories
# and then for include files in the src directory
INCLUDE = -I$(TOPDIR)/include -I$(SRCTOPDIR)/include \
-I/ccs/home/agriffith/eigen
DEFINES = -DHAVE_CONFIG_H -D__COMPILING_LIBINT2=1 -D__COMPILING_LIBINT2=1
CPPFLAGS = $(DEFINES) $(INCLUDE)
CXXFLAGS = -O2 -DNDEBUG
FCFLAGS =
LIBINT_HAS_CXX11 = yes
LIBINT_HAS_EIGEN = yes
HAVE_SYSTEM_BOOST_PREPROCESSOR_VARIADICS = 1
SYSLIBS = -lm