-
Notifications
You must be signed in to change notification settings - Fork 1
/
MakeVars.in
90 lines (70 loc) · 1.79 KB
/
MakeVars.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
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
# Emacs should use -*- Makefile -*- mode.
ifndef SRCDIR
SRCDIR = .
endif
SRCTOPDIR = $(SRCDIR)/$(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)
LIBTOOL = $(SHELL) $(TOPDIR)/libtool
LTLINK = $(LIBTOOL) --mode=link
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
LTINST = $(LIBTOOL) --mode=install
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@
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
# 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@
HIGHOPT_CXXFLAGS = $(CXXFLAGS)
NOALIAS_CXXFLAGS = $(NOALIAS_CFLAGS)
SYSLIBS = @LIBS@