This file is indexed.

/usr/share/GNUstep/Documentation/Developer/Make/Manual/gnustep-make/Library-Combination.html is in gnustep-make-doc 2.6.6-3.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<!-- Created by GNU Texinfo 5.2, http://www.gnu.org/software/texinfo/ -->
<head>
<title>GNUstep Makefile Package: Library Combination</title>

<meta name="description" content="GNUstep Makefile Package: Library Combination">
<meta name="keywords" content="GNUstep Makefile Package: Library Combination">
<meta name="resource-type" content="document">
<meta name="distribution" content="global">
<meta name="Generator" content="makeinfo">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<link href="index.html#Top" rel="start" title="Top">
<link href="Common-Variables.html#Common-Variables" rel="up" title="Common Variables">
<link href="Overridable-Flags.html#Overridable-Flags" rel="next" title="Overridable Flags">
<link href="Platform-Information.html#Platform-Information" rel="prev" title="Platform Information">
<style type="text/css">
<!--
a.summary-letter {text-decoration: none}
blockquote.smallquotation {font-size: smaller}
div.display {margin-left: 3.2em}
div.example {margin-left: 3.2em}
div.indentedblock {margin-left: 3.2em}
div.lisp {margin-left: 3.2em}
div.smalldisplay {margin-left: 3.2em}
div.smallexample {margin-left: 3.2em}
div.smallindentedblock {margin-left: 3.2em; font-size: smaller}
div.smalllisp {margin-left: 3.2em}
kbd {font-style:oblique}
pre.display {font-family: inherit}
pre.format {font-family: inherit}
pre.menu-comment {font-family: serif}
pre.menu-preformatted {font-family: serif}
pre.smalldisplay {font-family: inherit; font-size: smaller}
pre.smallexample {font-size: smaller}
pre.smallformat {font-family: inherit; font-size: smaller}
pre.smalllisp {font-size: smaller}
span.nocodebreak {white-space:nowrap}
span.nolinebreak {white-space:nowrap}
span.roman {font-family:serif; font-weight:normal}
span.sansserif {font-family:sans-serif; font-weight:normal}
ul.no-bullet {list-style: none}
-->
</style>


</head>

<body lang="en" bgcolor="#FFFFFF" text="#000000" link="#0000FF" vlink="#800080" alink="#FF0000">
<a name="Library-Combination"></a>
<div class="header">
<p>
Next: <a href="Overridable-Flags.html#Overridable-Flags" accesskey="n" rel="next">Overridable Flags</a>, Previous: <a href="Platform-Information.html#Platform-Information" accesskey="p" rel="prev">Platform Information</a>, Up: <a href="Common-Variables.html#Common-Variables" accesskey="u" rel="up">Common Variables</a> &nbsp; </p>
</div>
<hr>
<a name="Library-Combination-1"></a>
<h4 class="subsection">1.7.4 Library Combination</h4>

<dl>
<dt><a name="index-OBJC_005fRUNTIME_005fLIB"></a>Variable: <strong>OBJC_RUNTIME_LIB</strong></dt>
<dd><p><code>OBJC_RUNTIME_LIB</code> is assigned the code that indicates the
Objective-C Runtime library which compiled Objective-C programs will
use; the three possible values are: &lsquo;<samp>gnu</samp>&rsquo; for the GNU Runtime,
&lsquo;<samp>nx</samp>&rsquo; for the NeXT Runtime, and &lsquo;<samp>sun</samp>&rsquo; for the Sun
Microsystems Runtime.  The Objective-C Runtime library can be changed
to use a library other than the default with the &lsquo;<samp>library_combo</samp>&rsquo;
make parameter, see <a href="Running-Make.html#Running-Make">Running Make</a> for more details.  Read
<a href="#Library-Combination">Library Combination</a> for more information on how the Makefile
Package handles different library combinations.  If a makefile must
perform specific operations dependent upon the Objective-C Runtime
library then this variable is the one to check.
</p></dd></dl>

<dl>
<dt><a name="index-RUNTIME_005fDEFINE"></a>Variable: <strong>RUNTIME_DEFINE</strong></dt>
<dd><p><code>RUNTIME_DEFINE</code> is assigned a preprocessor flag that can be
passed to the compiler which defines a macro based upon the
Objective-C Runtime library that compiled Objective-C programs will
use.  This macro is useful if the compiled program must execute
different code based upon the Objective-C Runtime being used.  See
<a href="GNUmakefile_002epreamble.html#GNUmakefile_002epreamble">GNUmakefile.preamble</a> for an example on how to pass this
preprocessor flag when compiling.  The three possible values are:
&lsquo;<samp>-DGNU_RUNTIME=1</samp>&rsquo; for the GNU Runtime, &lsquo;<samp>-DNeXT_RUNTIME=1</samp>&rsquo;
for the NeXT Runtime, and &lsquo;<samp>-DSun_RUNTIME=1</samp>&rsquo; for the Sun
Microsystems Runtime.
</p></dd></dl>

<dl>
<dt><a name="index-FOUNDATION_005fLIB"></a>Variable: <strong>FOUNDATION_LIB</strong></dt>
<dd><p><code>FOUNDATION_LIB</code> is assigned the code that indicates the
Foundation Kit library, as specified by the OpenStep specification,
which compiled Objective-C programs will use; the four possible values
are: &lsquo;<samp>gnu</samp>&rsquo; for the GNUstep Base Library, &lsquo;<samp>nx</samp>&rsquo; for the NeXT
Foundation Kit Library, &lsquo;<samp>sun</samp>&rsquo; for the Sun Microsystems Foundation
Kit Library, and &lsquo;<samp>fd</samp>&rsquo; for the libFoundation Library.  The
Foundation Kit library can be changed to use a library other than the
default with the &lsquo;<samp>library_combo</samp>&rsquo; make parameter, see <a href="Running-Make.html#Running-Make">Running Make</a> for more details.  Read <a href="#Library-Combination">Library Combination</a> for more
information on how the Makefile Package handles different library
combinations.  If a makefile must perform specific operations
dependent upon the Foundation Kit library then this variable is the
one to check.
</p></dd></dl>

<dl>
<dt><a name="index-FND_005fDEFINE"></a>Variable: <strong>FND_DEFINE</strong></dt>
<dd><p><code>FND_DEFINE</code> is assigned a preprocessor flag that can be passed
to the compiler which defines a macro based upon the Foundation Kit
library, as specified by the OpenStep specification, which compiled
Objective-C programs will use.  This macro is useful if the compiled
program must execute different code based upon the Foundation Kit
library being used.  See <a href="GNUmakefile_002epreamble.html#GNUmakefile_002epreamble">GNUmakefile.preamble</a> for an example on
how to pass this preprocessor flag when compiling.  The four possible
values are: &lsquo;<samp>-DGNUSTEP_BASE_LIBRARY=1</samp>&rsquo; for the GNUstep Base
Library, &lsquo;<samp>-DNeXT_Foundation_LIBRARY=1</samp>&rsquo; for the NeXT Foundation
Kit Library, &lsquo;<samp>-DSun_Foundation_LIBRARY=1</samp>&rsquo; for the Sun
Microsystems Foundation Kit Library, and
&lsquo;<samp>-DLIB_FOUNDATION_LIBRARY=1</samp>&rsquo; for the libFoundation Library.
</p></dd></dl>

<dl>
<dt><a name="index-GUI_005fLIB"></a>Variable: <strong>GUI_LIB</strong></dt>
<dd><p><code>GUI_LIB</code> is assigned the code that indicates the Application Kit
library, as specified by the OpenStep specification, which compiled
Objective-C programs will use; the two possible values are: &lsquo;<samp>gnu</samp>&rsquo;
for the GNUstep GUI Library and &lsquo;<samp>nx</samp>&rsquo; for the NeXT Application Kit
Library.  The Application Kit library can be changed to use a library
other than the default with the &lsquo;<samp>library_combo</samp>&rsquo; make parameter,
see <a href="Running-Make.html#Running-Make">Running Make</a> for more details.  Read <a href="#Library-Combination">Library Combination</a> for more information on how the Makefile Package handles
different library combinations.  If a makefile must perform specific
operations dependent upon the Application Kit library then this
variable is the one to check.
</p></dd></dl>

<dl>
<dt><a name="index-GUI_005fDEFINE"></a>Variable: <strong>GUI_DEFINE</strong></dt>
<dd><p><code>GUI_DEFINE</code> is assigned a preprocessor flag that can be passed
to the compiler which defines a macro based upon the Application Kit
library, as specified by the OpenStep specification, which compiled
Objective-C programs will use.  This macro is useful if the compiled
program must execute different code based upon the Application Kit
library being used.  See <a href="GNUmakefile_002epreamble.html#GNUmakefile_002epreamble">GNUmakefile.preamble</a> for an example on
how to pass this preprocessor flag when compiling.  The two possible
values are: &lsquo;<samp>-DGNUSTEP_GUI_LIBRARY=1</samp>&rsquo; for the GNUstep GUI Library
and &lsquo;<samp>-DNeXT_Application_LIBRARY=1</samp>&rsquo; for the NeXT Application Kit
Library.
</p></dd></dl>

<dl>
<dt><a name="index-GUI_005fBACKEND_005fLIB"></a>Variable: <strong>GUI_BACKEND_LIB</strong></dt>
<dd><p><code>GUI_BACKEND_LIB</code> is assigned the code that indicates the backend
library which compiled Objective-C programs will use in conjunction
with the GNUstep GUI Library.  The three possible values are:
&lsquo;<samp>xdps</samp>&rsquo; for the GNUstep X/DPS GUI Backend Library, &lsquo;<samp>nsx</samp>&rsquo; for
the NSKit GUI Backend Library, and &lsquo;<samp>w32</samp>&rsquo; for the MediaBook WIN32
GUI Backend Library.  <code>GUI_BACKEND_LIB</code> is only relevant when
<code>GUI_LIB</code> is set to &lsquo;<samp>gnu</samp>&rsquo;; otherwise, <code>GUI_BACKEND_LIB</code>
will be set to &lsquo;<samp>nil</samp>&rsquo; to indicate that there is no backend
library.  <code>GUI_BACKEND_LIB</code> can be changed to use a library other
than the default with the &lsquo;<samp>library_combo</samp>&rsquo; make parameter, see
<a href="Running-Make.html#Running-Make">Running Make</a> for more details.  Read <a href="#Library-Combination">Library Combination</a>
for more information on how the Makefile Package handles different
library combinations.  If a makefile must perform specific operations
dependent upon the backend library then this variable is the one to
check.
</p></dd></dl>

<dl>
<dt><a name="index-GUI_005fBACKEND_005fDEFINE"></a>Variable: <strong>GUI_BACKEND_DEFINE</strong></dt>
<dd><p><code>GUI_BACKEND_DEFINE</code> is assigned a preprocessor flag that can be
passed to the compiler which defines a macro based upon the backend
library which compiled Objective-C programs will use in conjunction
with the GNUstep GUI Library.  This macro is useful if the compiled
program must execute different code based upon the backend library
being used.  See <a href="GNUmakefile_002epreamble.html#GNUmakefile_002epreamble">GNUmakefile.preamble</a> for an example on how to
pass this preprocessor flag when compiling.  The three possible values
are: &lsquo;<samp>-DXDPS_BACKEND_LIBRARY=1</samp>&rsquo; for the GNUstep X/DPS GUI Backend
Library, &lsquo;<samp>-DNSX_BACKEND_LIBRARY=1</samp>&rsquo; for the NSKit GUI Backend
Library, and &lsquo;<samp>-DW32_BACKEND_LIBRARY=1</samp>&rsquo; for the MediaBook WIN32
GUI Backend Library.  <code>GUI_BACKEND_DEFINE</code> is not defined if
there is not backend library; i.e. <code>GUI_BACKEND_LIB</code> is
&lsquo;<samp>nil</samp>&rsquo;.
</p></dd></dl>

<hr>
<div class="header">
<p>
Next: <a href="Overridable-Flags.html#Overridable-Flags" accesskey="n" rel="next">Overridable Flags</a>, Previous: <a href="Platform-Information.html#Platform-Information" accesskey="p" rel="prev">Platform Information</a>, Up: <a href="Common-Variables.html#Common-Variables" accesskey="u" rel="up">Common Variables</a> &nbsp; </p>
</div>



</body>
</html>