![]() System : Linux absol.cf 5.4.0-198-generic #218-Ubuntu SMP Fri Sep 27 20:18:53 UTC 2024 x86_64 User : www-data ( 33) PHP Version : 7.4.33 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, Directory : /usr/share/GNUstep/Documentation/Developer/Make/Manual/gnustep-make/ |
Upload File : |
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <!-- Created by GNU Texinfo 6.5, http://www.gnu.org/software/texinfo/ --> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>GNUmakefile.preamble (GNUstep Makefile Package)</title> <meta name="description" content="GNUmakefile.preamble (GNUstep Makefile Package)"> <meta name="keywords" content="GNUmakefile.preamble (GNUstep Makefile Package)"> <meta name="resource-type" content="document"> <meta name="distribution" content="global"> <meta name="Generator" content="makeinfo"> <link href="index.html#Top" rel="start" title="Top"> <link href="index.html#SEC_Contents" rel="contents" title="Table of Contents"> <link href="index.html#Top" rel="up" title="Top"> <link href="GNUmakefile_002epostamble.html#GNUmakefile_002epostamble" rel="next" title="GNUmakefile.postamble"> <link href="tool_002emake.html#tool_002emake" rel="prev" title="tool.make"> <style type="text/css"> <!-- a.summary-letter {text-decoration: none} blockquote.indentedblock {margin-right: 0em} blockquote.smallindentedblock {margin-right: 0em; font-size: smaller} blockquote.smallquotation {font-size: smaller} div.display {margin-left: 3.2em} div.example {margin-left: 3.2em} div.lisp {margin-left: 3.2em} div.smalldisplay {margin-left: 3.2em} div.smallexample {margin-left: 3.2em} 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.nolinebreak {white-space: nowrap} span.roman {font-family: initial; font-weight: normal} span.sansserif {font-family: sans-serif; font-weight: normal} ul.no-bullet {list-style: none} --> </style> </head> <body lang="en"> <a name="GNUmakefile_002epreamble"></a> <div class="header"> <p> Next: <a href="GNUmakefile_002epostamble.html#GNUmakefile_002epostamble" accesskey="n" rel="next">GNUmakefile.postamble</a>, Previous: <a href="Project-Types.html#Project-Types" accesskey="p" rel="prev">Project Types</a>, Up: <a href="index.html#Top" accesskey="u" rel="up">Top</a> [<a href="index.html#SEC_Contents" title="Table of contents" rel="contents">Contents</a>]</p> </div> <hr> <a name="Global-Variables-_0028GNUmakefile_002epreamble_0029"></a> <h3 class="section">1.5 Global Variables (<samp>GNUmakefile.preamble</samp>)</h3> <p><samp>GNUmakefile.preamble</samp> is an optional file that may be put within the package for declaring global makefile variables for the package. The filename, <samp>GNUmakefile.preamble</samp>, is just a convention; likewise, the variables defined within it can be put in the normal <samp>GNUmakefile</samp> versus in this special file. However, the reason for this convention is that the <samp>GNUmakefile</samp> may be automatically maintained by a project management system, like Project Center, so any changes made to <samp>GNUmakefile</samp> may be discarded by that project management system. </p> <p>The file, <samp>GNUmakefile.preamble</samp>, in the Makefile Package is a template that can be used the project’s <samp>GNUmakefile.preamble</samp>. It is not necessary to have a <samp>GNUmakefile.preamble</samp> with the project unless it is actually needed, the Makefile Package will only include it if it is available, see <a href="Makefile-Structure.html#Makefile-Structure">Makefile Structure</a> for information on how the Makefile Package includes a <samp>GNUmakefile.preamble</samp>. </p> <p>The rest of this section describes the individual global variables that the Makefile Package uses which are generally placed in the package’s <samp>GNUmakefile.preamble</samp>. </p> <dl> <dt><a name="index-ADDITIONAL_005fCPPFLAGS"></a>Variable: <strong>ADDITIONAL_CPPFLAGS</strong></dt> <dd><p><code>ADDITIONAL_CPPFLAGS</code> are additional flags that will be passed to the compiler preprocessor. Generally any macros to be defined for all files are placed here; the are passed for both Objective-C and C files that are compiled. <code>RUNTIME_DEFINE</code>, <code>FOUNDATION_DEFINE</code>, <code>GUI_DEFINE</code>, and <code>GUI_BACKEND_DEFINE</code> are some makefile variables which define macros that can be assigned to <code>ADDITIONAL_CPPFLAGS</code>. The following example illustrates the use of <code>ADDITIONAL_CPPFLAGS</code> to define a macro for the Objective-C Runtime Library plus an additional macro that is specific to the package. </p></dd></dl> <div class="smallexample"> <pre class="smallexample">ADDITIONAL_CPPFLAGS = $(RUNTIME_DEFINE) -DVERBOSE=1 </pre></div> <dl> <dt><a name="index-ADDITIONAL_005fOBJCFLAGS"></a>Variable: <strong>ADDITIONAL_OBJCFLAGS</strong></dt> <dd><p><code>ADDITIONAL_OBJCFLAGS</code> are additional flags that will be passed to the compiler when compiling Objective-C files. Adding flags here does not override the default <code>OBJCFLAGS</code>, see <a href="Overridable-Flags.html#Overridable-Flags">OBJCFLAGS</a>, they are in addition to <code>OBJCFLAGS</code>. Generally <code>ADDITIONAL_OBJCFLAGS</code> are placed before <code>OBJCFLAGS</code> when the compiler is executed, but one should avoid having any placement sensitive flags because the order of the flags is not guaranteed. The following example illustrates how you can pass additional Objective-C flags. </p></dd></dl> <div class="smallexample"> <pre class="smallexample">ADDITIONAL_OBJCFLAGS = -Wno-protocol </pre></div> <dl> <dt><a name="index-ADDITIONAL_005fCFLAGS"></a>Variable: <strong>ADDITIONAL_CFLAGS</strong></dt> <dd><p><code>ADDITIONAL_CFLAGS</code> are additional flags that will be passed to the compiler when compiling C files. Adding flags here does not override the default <code>CFLAGS</code>, see <a href="Overridable-Flags.html#Overridable-Flags">CFLAGS</a>, they are in addition to <code>CFLAGS</code>. Generally <code>ADDITIONAL_CFLAGS</code> are placed before <code>CFLAGS</code> when the compiler is executed, but one should avoid having any placement sensitive flags because the order of the flags is not guaranteed. The following example illustrates how you can pass additional C flags. </p></dd></dl> <div class="smallexample"> <pre class="smallexample">ADDITIONAL_CFLAGS = -finline-functions </pre></div> <dl> <dt><a name="index-ADDITIONAL_005fLDFLAGS"></a>Variable: <strong>ADDITIONAL_LDFLAGS</strong></dt> <dd><p><code>ADDITIONAL_LDFLAGS</code> are additional flags that will be passed to the linker when it creates an executable; these flags are passed when linking a command line tool, and application, or an Objective-C program. Adding flags here does not override the default <code>LDFLAGS</code>, see <a href="Overridable-Flags.html#Overridable-Flags">LDFLAGS</a>, they are in addition to <code>LDFLAGS</code>. Generally <code>ADDITIONAL_LDFLAGS</code> are placed before <code>LDFLAGS</code> when the linker is executed, but one should avoid having any placement sensitive flags because the order of the flags is not guaranteed. The following example illustrates how you can pass addition linker flags. </p></dd></dl> <div class="smallexample"> <pre class="smallexample">ADDITIONAL_LDFLAGS = -v </pre></div> <dl> <dt><a name="index-ADDITIONAL_005fINCLUDE_005fDIRS"></a>Variable: <strong>ADDITIONAL_INCLUDE_DIRS</strong></dt> <dd><p><code>ADDITIONAL_INCLUDE_DIRS</code> is the list of additional directories that the compiler will search when it is looking for include files. The directories should be specified as ‘<samp>-I</samp>’ flags to the compiler. The additional include directories will be placed before the normal GNUstep and system include directories, so they will always be searched first. The following example illustrates two additional include directories; <code>/usr/local/gnu/include</code> will be searched first, then <code>/usr/gnu/include</code>, and finally the GNUstep and system directories which are automatically defined by the Makefile Package. </p></dd></dl> <div class="smallexample"> <pre class="smallexample">ADDITIONAL_INCLUDE_DIRS = -I/usr/local/gnu/include -I/usr/gnu/include </pre></div> <dl> <dt><a name="index-ADDITIONAL_005fLIB_005fDIRS"></a>Variable: <strong>ADDITIONAL_LIB_DIRS</strong></dt> <dd><p><code>ADDITIONAL_LIB_DIRS</code> is the list of additional directories that the linker will search when it is looking for library files. The directories should be specified as ‘<samp>-L</samp>’ flags to the linker. The additional library directories will be placed before the GNUstep and system library directories so that they will be searched first by the linker. The following example illustrates two additional library directories; <code>/usr/local/gnu/lib</code> will be searched first, then <code>/usr/gnu/lib</code>, and finally the GNUstep and system directories which are automatically defined by the Makefile Package. </p></dd></dl> <div class="smallexample"> <pre class="smallexample">ADDITIONAL_LIB_DIRS = -L/usr/local/gnu/lib -L/usr/gnu/lib </pre></div> <dl> <dt><a name="index-ADDITIONAL_005fOBJC_005fLIBS"></a>Variable: <strong>ADDITIONAL_OBJC_LIBS</strong></dt> <dd><p><code>ADDITIONAL_OBJC_LIBS</code> is the list of additional libraries that the linker will use when linking command line tools, applications, and Objective-C programs, see <a href="tool_002emake.html#tool_002emake">tool.make</a>, <a href="application_002emake.html#application_002emake">application.make</a>, and <a href="objc_002emake.html#objc_002emake">objc.make</a>. For Objective-C programs, <code>ADDITIONAL_OBJC_LIBS</code> is placed before all of the Objective-C Runtime and system libraries so that they will be searched first when linking. For command line tools and applications, <code>ADDITIONAL_OBJC_LIBS</code> is placed <em>before</em> all of the Objective-C Runtime and system libraries but <em>after</em> the Foundation and GUI libraries. Libraries specified with <code>ADDITIONAL_OBJC_LIBS</code> should only depend upon the Objective-C Runtime and/or system functions, not Foundation or GUI classes; Foundation dependent libraries should be specified with <code>ADDITIONAL_TOOL_LIBS</code> and GUI dependent libraries should be specified with <code>ADDITONAL_GUI_LIBS</code>. The additional libraries should be specified as ‘<samp>-l</samp>’ flags to the linker as the following example illustrates. </p></dd></dl> <div class="smallexample"> <pre class="smallexample">ADDITIONAL_OBJC_LIBS = -lSwarm </pre></div> <dl> <dt><a name="index-ADDITIONAL_005fTOOL_005fLIBS"></a>Variable: <strong>ADDITIONAL_TOOL_LIBS</strong></dt> <dd><p><code>ADDITIONAL_TOOL_LIBS</code> is the list of additional libraries that the linker will use when linking command line tools and applications, see <a href="tool_002emake.html#tool_002emake">tool.make</a> and <a href="application_002emake.html#application_002emake">application.make</a>. For command line tools, <code>ADDITIONAL_TOOL_LIBS</code> is placed before all of the GNUstep and system libraries so that they will be searched first when linking. For applications, <code>ADDITIONAL_TOOL_LIBS</code> is placed before the Foundation and system libraries but after the GUI libraries. Libraries specified with <code>ADDITIONAL_TOOL_LIBS</code> should only depend upon the Foundation classes and/or system functions, not GUI classes; GUI dependent libraries should be specified with <code>ADDITIONAL_GUI_LIBS</code>. The additional libraries should be specified as ‘<samp>-l</samp>’ flags to the linker as the following example illustrates. </p></dd></dl> <div class="smallexample"> <pre class="smallexample">ADDITIONAL_TOOL_LIBS = -lone -lsimple </pre></div> <dl> <dt><a name="index-ADDITIONAL_005fGUI_005fLIBS"></a>Variable: <strong>ADDITIONAL_GUI_LIBS</strong></dt> <dd><p><code>ADDITIONAL_GUI_LIBS</code> is the list of additional libraries that the linker will use when linking applications, see <a href="application_002emake.html#application_002emake">application.make</a>. <code>ADDITIONAL_GUI_LIBS</code> is placed before all of the GUI, Foundation, and system libraries so that they will be searched first when linking. The additional libraries should be specified as ‘<samp>-l</samp>’ flags to the linker as the following example illustrates. </p></dd></dl> <div class="smallexample"> <pre class="smallexample">ADDITIONAL_GUI_LIBS = -lMiscGui </pre></div> <dl> <dt><a name="index-GS_005fWITH_005fARC"></a>Variable: <strong>GS_WITH_ARC</strong></dt> <dd><p><code>GS_WITH_ARC</code> may be set to 1 to say that Objective-C source code is to be compiled for ARC memory management. This variable must be set before <samp>common.make</samp> is included, and only works if the library combo includes the ’ng’ runtime specification. </p></dd></dl> <dl> <dt><a name="index-LIBRARIES_005fDEPEND_005fUPON"></a>Variable: <strong>LIBRARIES_DEPEND_UPON</strong></dt> <dd><p><code>LIBRARIES_DEPEND_UPON</code> is the set of libraries that the shared library depends upon, see <a href="library_002emake.html#library_002emake">library.make</a> for more information about building shared libraries; this variable is only relevant for library project types. On some platforms when a shared library is built, any libraries which the object code in the shared library depends upon must be linked in the generation of the shared library. This is similar to the process of linking an executable file like a command line tool or Objective-C program except that the result is a shared library. Libraries specified with <code>LIBRARIES_DEPEND_UPON</code> should be listed as ‘<samp>-l</samp>’ flags to the linker; when possible use variables defined by the Makefile Package to specify GUI, Foundation, or system libraries; like <code>GUI_LIBS</code>, <code>FND_LIBS</code>, <code>OBJC_LIBS</code>, or <code>SYSTEM_LIBS</code>. <code>LIBRARIES_DEPEND_UPON</code> is independent of <code>ADDITIONAL_OBJC_LIBS</code>, <code>ADDITIONAL_TOOL_LIBS</code>, and <code>ADDITIONAL_GUI_LIBS</code>, so any libraries specified there may need to be specified with <code>LIBRARIES_DEPEND_UPON</code>. The following example illustrates the use of <code>LIBRARIES_DEPEND_UPON</code> for a shared library that is depend upon the Foundation, ObjC, system libraries and an additional user library. </p></dd></dl> <div class="smallexample"> <pre class="smallexample">LIBRARIES_DEPEND_UPON = -lsimple $(FND_LIBS) $(OBJC_LIBS) $(SYSTEM_LIBS) </pre></div> <dl> <dt><a name="index-ADDITIONAL_005fINSTALL_005fDIRS"></a>Variable: <strong>ADDITIONAL_INSTALL_DIRS</strong></dt> <dd><p><code>ADDITIONAL_INSTALL_DIRS</code> is the list of additional directories that should be created when the Makefile Package installs the file for the project. These directories are only one that the project needs to be created but that the Makefile Package does not automatically create. The directories should be absolute paths but use the <code>GNUSTEP_LIBRARY</code> variable and other Makefile Package define variables, see <a href="Directory-Paths.html#Directory-Paths">Directory Paths</a>, so that the directories get created in the appropriate place relative to the other file installed for the project. The following example illustrates how two additional directories can be created during installation. </p></dd></dl> <div class="smallexample"> <pre class="smallexample">ADDITIONAL_INSTALL_DIRS = $(GNUSTEP_RESOURCES)/MyProject </pre></div> <hr> <div class="header"> <p> Next: <a href="GNUmakefile_002epostamble.html#GNUmakefile_002epostamble" accesskey="n" rel="next">GNUmakefile.postamble</a>, Previous: <a href="Project-Types.html#Project-Types" accesskey="p" rel="prev">Project Types</a>, Up: <a href="index.html#Top" accesskey="u" rel="up">Top</a> [<a href="index.html#SEC_Contents" title="Table of contents" rel="contents">Contents</a>]</p> </div> </body> </html>