File: MakeVars.export

package info (click to toggle)
libint2 2.3.0~beta3-2
  • links: PTS, VCS
  • area: main
  • in suites: buster, stretch
  • size: 14,432 kB
  • ctags: 5,089
  • sloc: cpp: 32,063; ansic: 26,475; sh: 3,080; makefile: 943; perl: 482; python: 129
file content (97 lines) | stat: -rw-r--r-- 2,137 bytes parent folder | download
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
# Emacs should use -*- Makefile -*- mode.

ifndef SRCDIR
  SRCDIR = .
endif
SRCTOPDIR = $(SRCDIR)/$(TO_TOPDIR)
top_builddir = $(TO_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@
LIBINT_SO_VERSION = @LIBINT_SO_VERSION@
BUILDID = @BUILDID@

# The object code suffix
OBJSUF = @OBJSUF@

# The library suffix
LIBSUF = @LIBSUF@

ENABLESHARED = @ENABLESHARED@

ifeq ($(ENABLESHARED),yes)
  SHELL = @SHELL@  # 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 = @CXXDEPENDSUF@
CXXDEPENDFLAGS = @CXXDEPENDFLAGS@

CXX = @CXX@
CXXDEPEND = @CXX@

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@
pkgconfigdir=@PKGCONFIGDIR@
datadir=@datarootdir@/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 \
	  @CPPFLAGS@
DEFINES = @DEFS@ @EXTRADEFINES@

CPPFLAGS = $(DEFINES) $(INCLUDE)
CXXFLAGS = @CXXFLAGS@
LIBINT_HAS_CXX11 = @LIBINT_HAS_CXX11@
LIBINT_HAS_EIGEN = @LIBINT_HAS_EIGEN@

SYSLIBS = @LIBS@