File: MakeVars.in

package info (click to toggle)
libint2 2.7.2-1.1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 63,776 kB
  • sloc: ansic: 842,934; cpp: 47,846; sh: 3,139; makefile: 1,017; f90: 676; perl: 482; python: 334
file content (80 lines) | stat: -rw-r--r-- 1,730 bytes parent folder | download | duplicates (3)
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
# Emacs should use -*- Makefile -*- mode.

# this is usually overridden
TARGET_TO_MAKE = $(shell basename `pwd`)

ifndef SRCDIR
  SRCDIR = .
endif
SRCTOPDIR = $(SRCDIR)/$(TOPDIR)

host = @host@
host_cpu = @host_cpu@
host_vendor = @host_vendor@
host_os = @host_os@

target = @target@
target_cpu = @target_cpu@
target_vendor = @target_vendor@
target_os = @target_os@

LIBINT_VERSION = @LIBINT_VERSION@
BUILDID = @BUILDID@

# The object code suffix
OBJSUF = @OBJSUF@

# The library suffix
LIBSUF = @LIBSUF@

# The suffix generated by the -M compiler option
CXXDEPENDSUF = @CXXDEPENDSUF@
CXXDEPENDFLAGS = @CXXDEPENDFLAGS@

CXX = @CXX@
CXXCOMP = @CXX@
CXXGEN = @CXXGEN@
CXX_COMPATIBLE_WITH_CXXGEN = @CXX_COMPATIBLE_WITH_CXXGEN@
CXXGEN_SUPPORTS_CPP11 = @CXXGEN_SUPPORTS_CPP11@

CXXDEPEND = @CXXDEPEND@

AR = @AR@
ARFLAGS = @ARFLAGS@

LD = @LD@
LDFLAGS = @LDFLAGS@

INSTALL = @INSTALL@
INSTALLDIROPT = -d -m 0755
INSTALLLIBOPT = -m 0644
INSTALLBINOPT = -m 0755
INSTALLSCRIPTOPT = -m 0755

prefix=@prefix@
exec_prefix=@exec_prefix@
bindir=@bindir@
libdir=@libdir@
includedir=@libintincludedir@

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)/src/bin -I$(TOPDIR)/include -I$(SRCTOPDIR)/include \
          -I$(SRCTOPDIR)/src/bin @CPPFLAGS@
DEFINES = @DEFS@ @EXTRADEFINES@

CPPFLAGS = $(DEFINES) $(INCLUDE)
CXXFLAGS = @CXXFLAGS@
CXXGENFLAGS = @CXXGENFLAGS@

SYSLIBS = @LIBS@

TARGET_HEADERS = $(HEADERS:%=$(top_objdir)/include/libint/%)

LIBINT_HAS_EIGEN = @LIBINT_HAS_EIGEN@
HAVE_SYSTEM_BOOST_PREPROCESSOR_VARIADICS = @HAVE_SYSTEM_BOOST_PREPROCESSOR_VARIADICS@