]> git.ipfire.org Git - thirdparty/cups.git/blame - doc/help/spec-cmp.html
Remove support for AIX, HP-UX, and OSF/1.
[thirdparty/cups.git] / doc / help / spec-cmp.html
CommitLineData
745129be 1<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
4744bd90 2<HTML>
3<!-- SECTION: Specifications -->
4<HEAD>
e1d6a774 5 <TITLE>CUPS Developer Guide</TITLE>
178cb736 6 <LINK REL="STYLESHEET" TYPE="text/css" HREF="../cups-printable.css">
4744bd90 7</HEAD>
8<BODY>
9
178cb736
MS
10<H1 CLASS="title">CUPS Developer Guide</H1>
11
12<P>This developer guide documents the guidelines and processes we use when developing and maintaining CUPS and related software. Our goal is to provide reliable and efficient software and documentation that addresses the needs of our users.</P>
4744bd90 13
a29fd7dd
MS
14<H2 CLASS="title"><A NAME="OVERVIEW">Overview</A></H2>
15
16<P>CUPS is developed by Apple Inc. and distributed as open source software under a combination of GNU GPL2 and GNU LGPL2 licenses with exceptions to allow linking to OpenSSL (which has a GPL-incompatible license) and for developers on Apple's operating systems to develop CUPS-based software until alternate license terms. Significant contributions to CUPS must be licensed to Apple using the <A HREF="http://www.cups.org/AppleContributorAgreement_2011-03-10.pdf">Apple Contributor Agreement</A>.</P>
17
18<P>Apple releases updates to the CUPS software approximately every three months. Each release has a version number consisting of the major version (currently 1), minor version (currently 6), and patch version (starting at 0) separated by the period, for example "1.6.0". Releases where only the patch version number changes will contain only bug fixes to the previous release, for example "1.6.1" includes bug fixes for the "1.6.0" release. New features require the major or minor version numbers to change, for example "1.6.0" release contains new features compared to the "1.5.3" release. Multiple beta and "candidate" releases generally precede each new feature release, for example "1.5b1", "1.5b2", and "1.5rc1" preceded the "1.5.0" release. Finally, we also post regular Subversion snapshot releases, for example "1.6svn-r10486", which represent a snapshot of the development for the next feature release.</P>
19
20<P>CUPS interfaces, including the C APIs and command-line arguments, environment variables, configuration files, and output format, are stable across patch versions and are generally backwards-compatible with interfaces used in prior major and minor versions. However, program interfaces such as those used by the scheduler to run filter, port monitor, and backend processes for job processing should only be considered stable from the point of view of a filter, port monitor, or backend. Software that simulates the scheduler in order to run those programs outside of CUPS must necessarily be updated when the corresponding interface is changed in a subsequent CUPS release, otherwise undefined behavior can occur.</P>
21
22<P>CUPS C APIs starting with an underscore (_) are considered to be private to CUPS and are not subject to the normal guarantees of stability between CUPS releases and must <em>never</em> be used in non-CUPS source code. Similarly, configuration and state files written by CUPS are considered private if a corresponding man page is not provided with the CUPS release. <em>Never</em> rely on undocumented files or formats when developing software for CUPS. <em>Always</em> use a published C API to access data stored in a file to avoid compatibility problems in the future.</P>
23
24
4744bd90 25<H2 CLASS="title"><A NAME="COMMUNICATION">Communication</A></H2>
26
27<H3><A NAME="CONTACT">How to Contact the Developers</A></H3>
28
a29fd7dd 29<P>The <A HREF="http://lists.cups.org/">CUPS Mailing Lists</A> are the primary means of asking questions and informally discussing issues and feature requests with the CUPS developers and other experienced CUPS users and developers. Table 1 shows the available mailing lists and their focus:</P>
4744bd90 30
31<DIV CLASS="table"><TABLE SUMMARY="CUPS Forums">
a29fd7dd 32<CAPTION>Table 1: CUPS Mailing Lists</CAPTION>
4744bd90 33<TR>
a29fd7dd 34 <TH>List</TH>
4744bd90 35 <TH>Focus/Purpose</TH>
36</TR>
37<TR>
a29fd7dd
MS
38 <TD>cups</TD>
39 <TD>General discussion and usage questions for the CUPS software</TD>
4744bd90 40</TR>
41<TR>
a29fd7dd
MS
42 <TD>cups-bugs</TD>
43 <TD>Discussion of bugs and issues in the CUPS software</TD>
4744bd90 44</TR>
45<TR>
a29fd7dd
MS
46 <TD>cups-commit</TD>
47 <TD>Report of all commits to the Subversion repository (read-only)</TD>
4744bd90 48</TR>
49<TR>
a29fd7dd
MS
50 <TD>cups-dev</TD>
51 <TD>Development questions and discussion of new features in the CUPS software</TD>
4744bd90 52</TR>
53</TABLE></DIV>
54
a29fd7dd 55
4744bd90 56<H3><A NAME="SUBMIT">How to Submit a Bug Report or Feature Request</A></H3>
57
a29fd7dd
MS
58<P>The CUPS "<A HREF="http://www.cups.org/str.php">Bugs &amp; Features</A>" page provides access to the CUPS <em>Software Trouble Report</em> (STR) database and is the formal way to submit a bug report or feature request to the CUPS developers. Please note, however, that we <em>do not</em> provide answers to usage questions or resolve problems in third-party software on this page - use the <A HREF="#CONTACT">CUPS Mailing Lists</A> for that instead.</P>
59
60<P>Unlike discussions that occur on the CUPS Mailing Lists, formal bug reports and feature requests must be acted on by the CUPS developers. This does not mean that every bug report is resolved or every feature request is implemented, but we do respond and keep track of them all for posterity.</P>
61
62<BLOCKQUOTE>Please use the search feature of the Bugs &amp; Features page before submitting a new bug report or feature request. If you see an existing report that matches your issue, please post a message to that report ("I have this issue as well", "I would also like to see", etc.) rather than submitting a new report. This helps speed the resolution of your issue by reducing the CUPS developers' work load and identifying popular issues.</BLOCKQUOTE>
63
4744bd90 64
65<H3><A NAME="PATCH">How to Prepare a Patch</A></H3>
66
a29fd7dd 67<P>When submitting a bug report or feature request, you can include patch files that resolve the bug or implement the feature to speed the inclusion of that bug fix or feature in a new CUPS release. For changes to existing files, we prefer a unified diff against the current Subversion <VAR>trunk</VAR> branch, which can be generated easily using the following Subversion command:</P>
4744bd90 68
69<PRE CLASS="command">
70svn diff >filename.patch
71</PRE>
72
a29fd7dd 73<P>If you produce a patch using a released source archive, use one of the following commands instead:</P>
4744bd90 74
75<PRE CLASS="command">
76diff -u oldfilename filename >filename.patch
77
78diff -urN olddirectory directory >filename.patch
79</PRE>
80
a29fd7dd
MS
81<P>New files and files with significant changes can be submitted in their entirety, however that may delay the adoption of your changes.</P>
82
83<BLOCKQUOTE><B>Note:</B>
4744bd90 84
a29fd7dd 85<P>Patches and files must conform to the standards outlined in the "<A HREF="#CODING">Coding Guidelines</A>" and "<A HREF="#MAKEFILES">Makefile Guidelines</A>" sections in this document. In addition, since Apple Inc. provides CUPS under multiple licenses, we require that you <A HREF="http://www.cups.org/AppleContributorAgreement_2011-03-10.pdf">license</A> significant changes and files to us for inclusion in CUPS. The CUPS developers will inform you if licensing is required.</P></BLOCKQUOTE>
4744bd90 86
87
88<H2 CLASS="title"><A NAME="PRACTICES">Software Development Practices</A></H2>
89
90<H3><A NAME="VERSIONS">Version Numbering</A></H3>
91
a29fd7dd
MS
92<P>CUPS uses a three-part version number separated by periods to represent the major, minor, and patch release numbers. Major release numbers indicate large design changes or backwards-incompatible changes to the CUPS API or CUPS Imaging API. Minor release numbers indicate new features and other smaller changes which are backwards-compatible with previous CUPS releases. Patch numbers indicate bug fixes to the previous feature release.</P>
93
94<BLOCKQUOTE><B>Note:</B>
95
96<P>When we talk about compatibility, we are talking about binary compatibility for public APIs and output format compatibility for program interfaces. Changes to configuration file formats or the default behavior of programs are not generally considered incompatible as the upgrade process can normally address such changes gracefully.</P></BLOCKQUOTE>
4744bd90 97
98<P>Production releases use the plain version numbers:</P>
99
100<PRE CLASS="command">
101MAJOR.MINOR.PATCH
1021.0.0
1031.0.1
1041.0.2
105...
1061.1.0
107...
1081.1.23
1091.2.0
1101.2.1
111...
1121.3.0
113...
1142.0.0
115</PRE>
116
a29fd7dd
MS
117<P>The first production release in a MAJOR.MINOR series (MAJOR.MINOR.0) is called a feature release. Feature releases are the only releases that may contain new features. Subsequent production releases in a MAJOR.MINOR series may only contain bug fixes.</P>
118
119<BLOCKQUOTE><B>Note:</B>
4744bd90 120
a29fd7dd 121<P>We did not hold to this limitation in the CUPS 1.1 series for a variety of reasons. Starting with CUPS 1.2, the "no new features in a patch release" policy has been strictly enforced. The policy has also resulted in fewer new features (and interactions!) to validate/test in the subsequence feature releases.</P></BLOCKQUOTE>
4744bd90 122
a29fd7dd 123<P>Beta-test releases are identified by appending the letter B to the major and minor version numbers followed by the beta release number:</P>
4744bd90 124
125<PRE CLASS="command">
126MAJOR.MINORbNUMBER
1271.2b1
128</PRE>
129
a29fd7dd 130<P>Release candidates are identified by appending the letters RC to the major and minor version numbers followed by the release candidate number:</P>
4744bd90 131
132<PRE CLASS="command">
133MAJOR.MINORrcNUMBER
1341.2rc1
135</PRE>
136
a29fd7dd 137<P>Developer snapshots are identified by appending the letters SVN-R to the major and minor version numbers followed by the revision number:</P>
4744bd90 138
139<PRE CLASS="command">
140MAJOR.MINORsvn-rREV
1411.2svn-r1234
142</PRE>
143
a29fd7dd 144<P>Beta-test releases, release candidates, and developer snapshots are only created for new minor releases. Once a production release has been made (MAJOR.MINOR.0), subsequent patch releases are issued without preliminary beta or release testing.</P>
4744bd90 145
146<H3>Version Control (Subversion)</H3>
147
a29fd7dd 148<P>The CUPS source files are managed by the Subversion ("SVN") software, available at:</P>
4744bd90 149
150<PRE CLASS="command">
a29fd7dd 151<A HREF="http://subversion.apache.org/" TARGET="_blank">subversion.apache.org</A>
4744bd90 152</PRE>
153
a29fd7dd 154<P>Source files are "checked in" with each change so that modifications can be tracked, and each checkin must reference any applicable STRs. The following format <em>must</em> be used for commit log messages:</P>
4744bd90 155
156<PRE CLASS="command">
f8b3a85b 157Summary of the change on one line followed by bug number (STR #NNNN)
4744bd90 158
f8b3a85b 159Detailed list of changes.
4744bd90 160</PRE>
161
a29fd7dd 162<P>Primary development occurs on the <var>trunk</var> branch, with changes merged back to release branches as needed. Table 2 shows the URLs developers use for the various CUPS sub-projects and branches:</P>
4744bd90 163
164<DIV CLASS="table"><TABLE SUMMARY="CUPS Subversion URLs">
165<CAPTION>Table 2: CUPS Subversion URLs</CAPTION>
166<TR>
167 <TH>URL</TH>
168 <TH>Purpose</TH>
169</TR>
170<TR>
a29fd7dd 171 <TD><A HREF="http://svn.cups.org/public/cups/trunk/">https://svn.cups.org/public/cups/trunk/</A></TD>
4744bd90 172 <TD>Primary CUPS development branch</TD>
173</TR>
174<TR>
a29fd7dd 175 <TD><A HREF="http://svn.cups.org/public/cups/branches/">https://svn.cups.org/public/cups/branches/</A></TD>
4744bd90 176 <TD>CUPS maintenance branches (merge-only)</TD>
177</TR>
178<TR>
a29fd7dd 179 <TD><A HREF="http://svn.cups.org/public/cups/tags/">https://svn.cups.org/public/cups/tags/</A></TD>
4744bd90 180 <TD>CUPS release tags (read-only)</TD>
181</TR>
4744bd90 182</TABLE></DIV>
183
a29fd7dd 184<P>The branch for a MAJOR.MINOR release are created when the first production release (MAJOR.MINOR.0) is made using the name "branch-MAJOR.MINOR". Release tags are created for every beta, candidate, and production release using the name "release-MAJOR.MINORbNUMBER", "release-MAJOR.MINORrcNUMBER", or "release-MAJOR.MINOR.PATCH", respectively. No release tags are created for developer snapshots.</P>
4744bd90 185
186
187<H3>Files and Directories</H3>
188
a29fd7dd 189<P>File and directory names may not exceed 16 characters in length to ensure compatibility with older UNIX filesystems. In addition, to avoid problems with case-insensitive filesystems, you may not use names which differ only by case, for example "ReadMe" and "README" are not allowed in the same directory.</P>
4744bd90 190
a29fd7dd 191<P>Source files must be documented and formatted as described in "<A HREF="#CODING">Coding Requirements</A>". Makefiles must follow the guidelines in "<A HREF="#MAKEFILE">Makefile Guidelines</A>".</P>
4744bd90 192
193
194<H3>Build System</H3>
195
a29fd7dd
MS
196<P>The CUPS build system uses <A HREF="http://www.gnu.org/software/autoconf/">GNU autoconf</A> to tailor the library to the local operating system. Project files for the current release of Visual C++ are also provided for Microsoft Windows<SUP>&reg;</SUP>. To improve portability, makefiles must not make use of features unique to <A HREF="http://www.gnu.org/software/make/">GNU make</A>. See the <A HREF="#MAKEFILES">Makefile Guidelines</A> section for a description of the allowed make features and makefile guidelines.</P>
197
198<P>Additional GNU build programs such as <A HREF="http://www.gnu.org/software/automake">GNU automake</A> and <A HREF="http://www.gnu.org/software/libtool">GNU libtool</A> must not be used. GNU automake produces non-portable makefiles which depend on GNU-specific extensions, and GNU libtool is not portable or reliable enough for CUPS.</P>
4744bd90 199
200
201<H3><A NAME="PACKAGING">Packaging</A></H3>
202
a29fd7dd 203<P>Source packages are created using the <VAR>tools/makesrcdist</VAR> script in the Subversion repository. The script optionally uses a version number argument:</P>
4744bd90 204
205<PRE CLASS="command">
206tools/makesrcdist
207tools/makesrcdist <I>version</I>
208</PRE>
209
a29fd7dd
MS
210<P>When run with no arguments, the script creates a snapshot of the current working copy and names it using the highest revision number in the WC, for example "/tmp/cups-1.3svn-r1234-source.tar.bz2" and "/tmp/cups-1.3svn-r1234-source.tar.gz". When run with two arguments, the script creates a release tag in the repository and exports that tag, creating the files
211"/tmp/cups-<I>version</I>-source.tar.bz2" and "/tmp/cups-<I>version</I>-source.tar.gz".</P>
212
213<P>Binary packages are not generally distributed by the CUPS team, however the <VAR>packaging/cups.spec</VAR> and <VAR>packaging/cups.list</VAR> files may be used to create binary packages on Linux, OS X, and UNIX. The <VAR>packaging/cups.spec</VAR> file produces a binary package using the <CODE>rpmbuild(8)</CODE> software:</P>
4744bd90 214
215<PRE CLASS="command">
216rpmbuild -ta cups-<I>version</I>-source.tar.gz
217</PRE>
218
a29fd7dd 219<P>The <VAR>cups.list</VAR> file is generated by the <VAR>configure</VAR> script and produces binary packages for many platforms using the <A HREF="http://www.epmhome.org/" TARGET="_blank">EPM</A> software. Table 3 shows the targets that are available for each type of binary package:</P>
4744bd90 220
221<DIV CLASS="table"><TABLE SUMMARY="Binary Package Targets">
222<CAPTION>Table 3: Binary Package Targets</CAPTION>
223<TR>
224 <TH>Target</TH>
225 <TH>Type of Package</TH>
226</TR>
4744bd90 227<TR>
228 <TD>bsd</TD>
229 <TD>*BSD pkg_install</TD>
230</TR>
231<TR>
232 <TD>deb</TD>
233 <TD>Debian dpkg</TD>
234</TR>
4744bd90 235<TR>
236 <TD>epm</TD>
237 <TD>Portable tarball with install script</TD>
238</TR>
4744bd90 239<TR>
240 <TD>pkg</TD>
241 <TD>Solaris pkgadd</TD>
242</TR>
243<TR>
244 <TD>rpm</TD>
245 <TD>RPM binary</TD>
246</TR>
4744bd90 247<TR>
248 <TD>slackware</TD>
249 <TD>Slackware install</TD>
250</TR>
4744bd90 251</TABLE></DIV>
252
a29fd7dd 253<P>Finally, the <VAR>tools/testrpm</VAR> and <VAR>tools/testosx</VAR> scripts can be used to create binary packages from the current working copy for testing on Linux and OS X, respectively:</P>
4744bd90 254
255<PRE CLASS="command">
256tools/testrpm
257sudo rpm -U /usr/src/redhat/RPMS/i386/cups*.rpm
258
259sudo tools/testosx
260open cups.pkg
261</PRE>
262
263
264<H3><A NAME="TESTING">Testing</A></H3>
265
a29fd7dd 266<P>Software testing is conducted according to the <A HREF="spec-stp.html">CUPS Software Test Plan</A>. This testing is automated via the top-level makefile <VAR>test</VAR> target:</P>
4744bd90 267
268<PRE CLASS="command">
269make test
270</PRE>
271
a29fd7dd 272<P>The test environment allows for both short-term automated testing and long-term testing and development without the automated test script.</P>
4744bd90 273
274
275<H2 CLASS="title"><A NAME="STR">Trouble Report Processing</A></H2>
276
a29fd7dd 277<P>A Software Trouble Report ("STR") must be submitted every time a user or vendor experiences a problem with the CUPS software. Trouble reports are maintained on the <A HREF="http://www.cups.org/str.php" TARGET="_blank">Bugs &amp; Features</A> page with one of the following states:</P>
4744bd90 278
279<OL>
280
281 <LI>STR is closed with complete resolution</LI>
282
283 <LI>STR is closed without resolution</LI>
284
285 <LI>STR is active, waiting on information from submitter</LI>
286
287 <LI>STR is pending with additional information from submitter</LI>
288
289 <LI>STR is newly submitted</LI>
290
291</OL>
292
293<P>Trouble reports are processed using the following steps.</P>
294
a29fd7dd 295<H3>1. Classification</H3>
4744bd90 296
a29fd7dd 297<P>When a trouble report is received it must be classified at one of the following priority levels:</P>
4744bd90 298
299<OL>
300
a29fd7dd 301 <LI>Request for enhancement, e.g. asking for a feature
4744bd90 302
a29fd7dd 303 <LI>Low, e.g. a documentation error or undocumented side-effect
4744bd90 304
a29fd7dd 305 <LI>Moderate, e.g. unable to print a file or unable to compile the software
4744bd90 306
a29fd7dd 307 <LI>High, e.g. unable to print to a printer or key functionality not working
4744bd90 308
309 <LI>Critical, e.g. unable to print at all
310
311</OL>
312
a29fd7dd 313<P>Level 4 and 5 trouble reports must be resolved in the next software release. Level 2 and 3 trouble reports are scheduled for resolution in a specific release at the discretion of the release coordinator. Level 1 trouble reports are scheduled for resolution in a future feature release.</P>
4744bd90 314
315<P>The scope of the problem is also determined as:</P>
316
317<OL>
318
319 <LI>Specific to a machine or printer
320
321 <LI>Specific to an operating system
322
323 <LI>Applies to all machines, printers, and operating systems
324
325</OL>
326
a29fd7dd 327<H3>2. Identification</H3>
4744bd90 328
a29fd7dd 329<P>Once the level and scope of the trouble report is determined the software sub-system(s) involved with the problem are determined. This may involve additional communication with the user or vendor to isolate the problem to a specific cause.</P>
4744bd90 330
a29fd7dd 331<P>When the sub-system(s) involved have been identified, an engineer will then determine the change(s) needed and estimate the time required for the change(s).</P>
4744bd90 332
a29fd7dd 333<H3>3. Correction</H3>
4744bd90 334
a29fd7dd 335<P>Corrections are scheduled based upon the severity and complexity of the problem. Once all changes have been made, documented, and tested successfully a new software release snapshot is generated. Additional tests are added as necessary for proper testing of the changes.</P>
4744bd90 336
a29fd7dd 337<H3>4. Notification</H3>
4744bd90 338
a29fd7dd 339<P>The user or vendor is notified when the fix is available or if the problem was caused by user error.</P>
4744bd90 340
341
342<H2 CLASS="title"><A NAME="RELEASES">Release Management</A></H2>
343
a29fd7dd 344<P>When testing has been completed successfully, a new source package is created using the <VAR>tools/makesrcdist</VAR> script. Three types of releases - beta, candidate, and production - are created and released to the public using the basic schedule in Table 4. At least one beta and one release candidate must be created prior to a production release, and there must be at least two weeks between the last beta and first candidate and last candidate and first production release.</P>
4744bd90 345
346<DIV CLASS="table"><TABLE SUMMARY="CUPS Basic Release Schedule">
347<CAPTION>Table: CUPS Basic Release Schedule</CAPTION>
348<TR>
349 <TH>Week</TH>
350 <TH>Version</TH>
351 <TH>Description</TH>
352</TR>
353<TR>
354 <TD>T-6 weeks</TD>
355 <TD>1.2b1</TD>
356 <TD>First beta release</TD>
357</TR>
358<TR>
359 <TD>T-5 weeks</TD>
360 <TD>1.2b2</TD>
361 <TD>Second beta release</TD>
362</TR>
363<TR>
364 <TD>T-3 weeks</TD>
365 <TD>1.2rc1</TD>
366 <TD>First release candidate</TD>
367</TR>
368<TR>
369 <TD>T-2 weeks</TD>
370 <TD>1.2rc2</TD>
371 <TD>Second release candidate</TD>
372</TR>
373<TR>
374 <TD>T-0 weeks</TD>
375 <TD>1.2.0</TD>
376 <TD>Production (feature) release</TD>
377</TR>
378</TABLE></DIV>
379
380
381<H2 CLASS="title"><A NAME="CODING">Coding Guidelines</A></H2>
382
a29fd7dd
MS
383<P>These coding guidelines provide detailed information on source file formatting and documentation content and must be applied to all C and C++ source files provided with CUPS. Source code for other languages should conform to these guidelines as allowed by the language.</P>
384
4744bd90 385
386<H3>Source Files</H3>
387
a29fd7dd 388<P>All source files names must be 16 characters or less in length to ensure compatibility with older UNIX filesystems. Source files containing functions have an extension of ".c" for ANSI C and ".cxx" for C++ source files. All other "include" files have an extension of ".h". Tabs are set to 8 characters.</P>
4744bd90 389
a29fd7dd
MS
390<BLOCKQUOTE><B>Note:</B>
391
392<P>The ".cxx" extension is used because it is the only common C++ extension between Linux, OS X, UNIX, and Windows.</P></BLOCKQUOTE>
393
9d661958 394<P>The top of each source file contains a header giving the name of the file, the purpose or nature of the source file, and the copyright and licensing notice. The file name and revision information is provided by the Subversion "&#36;Id$" tag:</P>
4744bd90 395
396<PRE CLASS="command">
397/*
398 * "&#36;Id$"
399 *
9d661958 400 * Description of file contents.
4744bd90 401 *
9d661958 402 * Copyright 2013 by Apple Inc.
4744bd90 403 *
9d661958
MS
404 * These coded instructions, statements, and computer programs are the
405 * property of Apple Inc. and are protected by Federal copyright
406 * law. Distribution and use rights are outlined in the file "LICENSE.txt"
407 * which should have been included with this file. If this file is
408 * file is missing or damaged, see the license at "http://www.cups.org/".
4744bd90 409 */
410</PRE>
411
a29fd7dd 412<P>For source files that are subject to the Apple OS-Developed Software exception, the following additional comment appears after the contact information:</P>
4744bd90 413
414<PRE CLASS="command">
9d661958 415 * This file is subject to the Apple OS-Developed Software exception.
4744bd90 416</PRE>
417
a29fd7dd 418<P>The bottom of each source file contains a trailer giving the name of the file using the Subversion "&#36;Id$" tag. The primary purpose of this is to mark the end of a source file; if the trailer is missing it is possible that code has been lost near the end of the file:</P>
4744bd90 419
420<PRE CLASS="command">
421/*
422 * End of "&#36;Id$".
423 */
424</PRE>
425
a29fd7dd
MS
426
427<H3>Comments</H3>
428
429<P>All source code utilizes block comments within functions to describe the operations being performed by a group of statements; avoid putting a comment per line unless absolutely necessary, and then consider refactoring the code so that it is not necessary. C source files use the block comment format ("/* comment */") since many vendor C compilers still do not support C99/C++ comments ("// comment"):</P>
430
431<PRE CLASS="command">
432 /*
433 * Clear the state array before we begin...
434 */
435
436 for (i = 0; i &lt; (sizeof(array) / sizeof(sizeof(array[0])); i ++)
437 array[i] = CUPS_STATE_IDLE;
438
439 /*
440 * Wait for state changes on another thread...
441 */
442
443 do
444 {
445 for (i = 0; i &lt; (sizeof(array) / sizeof(sizeof(array[0])); i ++)
446 if (array[i] != CUPS_STATE_IDLE)
447 break;
448
449 if (i == (sizeof(array) / sizeof(array[0])))
450 sleep(1);
451 } while (i == (sizeof(array) / sizeof(array[0])));
452</PRE>
453
454<H3>Indentation</H3>
455
456<P>All code blocks enclosed by brackets begin with the opening brace on a new line. The code then follows starting on a new line after the brace and is indented 2 spaces. The closing brace is then placed on a new line following the code at the original indentation:</P>
457
458<PRE CLASS="command">
459{
460 int i; /* Looping var */
461
462
463 /*
464 * Process foobar values from 0 to 999...
465 */
466
467 for (i = 0; i &lt; 1000; i ++)
468 {
469 do_this(i);
470 do_that(i);
471 }
472}
473</PRE>
474
475<P>Single-line statements following "do", "else", "for", "if", and "while" are indented 2 spaces as well. Blocks of code in a "switch" block are indented 4 spaces after each "case" and "default" case:</P>
476
477<PRE CLASS="command">
478switch (array[i])
479{
480 case CUPS_STATE_IDLE :
481 do_this(i);
482 do_that(i);
483 break;
484 default :
485 do_nothing(i);
486 break;
487}
488</PRE>
489
490
491<H3>Spacing</H3>
492
493<P>A space follows each reserved word such as "if", "while", etc. Spaces are not inserted between a function name and the arguments in parenthesis.</P>
494
495
496<H3>Return Values</H3>
497
498<P>Parenthesis surround values returned from a function:</P>
499
500<PRE CLASS="command">
501return (CUPS_STATE_IDLE);
502</PRE>
503
504
4744bd90 505<H3>Functions</H3>
506
a29fd7dd 507<P>Functions with a global scope have a lowercase prefix followed by capitalized words, e.g., "cupsDoThis", "cupsDoThat", "cupsDoSomethingElse", etc. Private global functions begin with a leading underscore, e.g., "_cupsDoThis", "_cupsDoThat", etc.</P>
4744bd90 508
a29fd7dd 509<P>Functions with a local scope are declared "static" with lowercase names and underscores between words, e.g., "do_this", "do_that", "do_something_else", etc.</P>
4744bd90 510
a29fd7dd 511<P>Each function begins with a comment header describing what the function does, the possible input limits (if any), and the possible output values (if any), and any special information needed:</P>
4744bd90 512
513<PRE CLASS="command">
514/*
515 * 'do_this()' - Compute y = this(x).
516 *
517 * Notes: none.
518 */
519
520static float /* O - Inverse power value, 0.0 &lt;= y &lt;= 1.1 */
521do_this(float x) /* I - Power value (0.0 &lt;= x &lt;= 1.1) */
522{
523 ...
524 return (y);
525}
526</PRE>
527
a29fd7dd 528<P>Return/output values are indicated using an "O" prefix, input values are indicated using the "I" prefix, and values that are both input and output use the "IO" prefix for the corresponding in-line comment.</P>
4744bd90 529
a29fd7dd 530<P>The Mini-XML documentation generator also understands the following special text in the function description comment:</P>
4744bd90 531
532<UL>
533
a29fd7dd 534 <LI><CODE>@deprecated@</CODE> - Marks the function as deprecated (not recommended for new development and scheduled for removal)</LI>
4744bd90 535
a29fd7dd 536 <LI><CODE>@since CUPS <I>version</I>@</CODE> - Marks the function as new in the specified version of CUPS.</LI>
f8b3a85b 537
a29fd7dd 538 <LI><CODE>@private@</CODE> - Marks the function as private (same as starting the function name with an underscore)</LI>
f8b3a85b 539
4744bd90 540</UL>
541
a29fd7dd 542
4744bd90 543<H3>Variables</H3>
544
a29fd7dd 545<P>Variables with a global scope are capitalized, e.g., "ThisVariable", "ThatVariable", "ThisStateVariable", etc. Globals in CUPS libraries are either part of the per-thread global values managed by the "_cupsGlobals()" function or are suitably protected for concurrent access. Global variables should be replaced by function arguments whenever possible.</P>
4744bd90 546
a29fd7dd 547<P>Variables with a local scope are lowercase with underscores between words, e.g., "this_variable", "that_variable", etc. Any "local global" variables shared by functions within a source file are declared "static". As for global variables, local static variables are suitably protected for concurrent access.</P>
4744bd90 548
a29fd7dd 549<P>Each variable is declared on a separate line and is immediately followed by a comment block describing the variable:</P>
4744bd90 550
551<PRE CLASS="command">
a29fd7dd
MS
552int ThisVariable; /* The current state of this */
553static int that_variable; /* The current state of that */
4744bd90 554</PRE>
555
a29fd7dd 556
4744bd90 557<H3>Types</H3>
558
a29fd7dd 559<P>All type names are lowercase with underscores between words and "_t" appended to the end of the name, e.g., "cups_this_type_t", "cups_that_type_t", etc. Type names start with a prefix, typically "cups" or the name of the program, to avoid conflicts with system types. Private type names start with an underscore, e.g., "_cups_this_t", "_cups_that_t", etc.</P>
4744bd90 560
a29fd7dd 561<P>Each type has a comment block immediately after the typedef:</P>
4744bd90 562
563<PRE CLASS="command">
a29fd7dd 564typedef int cups_this_type_t; /* This type is for CUPS foobar options. */
4744bd90 565</PRE>
566
a29fd7dd 567
4744bd90 568<H3>Structures</H3>
569
a29fd7dd 570<P>All structure names are lowercase with underscores between words and "_s" appended to the end of the name, e.g., "cups_this_s", "cups_that_s", etc. Structure names start with a prefix, typically "cups" or the name of the program, to avoid conflicts with system types. Private structure names start with an underscore, e.g., "_cups_this_s", "_cups_that_s", etc.</P>
4744bd90 571
a29fd7dd 572<P>Each structure has a comment block immediately after the struct and each member is documented similar to the variable naming policy above:</P>
4744bd90 573
574<PRE CLASS="command">
a29fd7dd 575struct cups_this_struct_s /* This structure is for CUPS foobar options. */
4744bd90 576{
a29fd7dd
MS
577 int this_member; /* Current state for this */
578 int that_member; /* Current state for that */
4744bd90 579};
580</PRE>
581
a29fd7dd 582
4744bd90 583<H3>Constants</H3>
584
a29fd7dd 585<P>All constant names are uppercase with underscores between words, e.g., "CUPS_THIS_CONSTANT", "CUPS_THAT_CONSTANT", etc. Constants begin with an uppercase prefix, typically "CUPS" or the program name. Private constants start with an underscore, e.g., "_CUPS_THIS_CONSTANT", "_CUPS_THAT_CONSTANT", etc.</P>
4744bd90 586
a29fd7dd 587<P>Typed enumerations should be used whenever possible to allow for type checking by the compiler.</P>
4744bd90 588
a29fd7dd 589<P>Comment blocks immediately follow each constant:</P>
4744bd90 590
591<PRE CLASS="command">
592enum
593{
594 CUPS_THIS_TRAY, /* This tray */
595 CUPS_THAT_TRAY /* That tray */
596};
597</PRE>
598
4744bd90 599
600<H2 CLASS="title"><A NAME="MAKEFILES">Makefile Guidelines</A></H2>
601
a29fd7dd
MS
602<P>The following is a guide to the makefile-based build system used by CUPS. These standards have been developed over the years to allow CUPS to be built on as many systems and environments as possible.</P>
603
4744bd90 604
605<H3>General Organization</H3>
606
a29fd7dd
MS
607<P>The CUPS source code is organized functionally into a top-level makefile, include file, and subdirectories each with their own makefile and dependencies files. The ".in" files are template files for the <CODE>autoconf</CODE> software and are used to generate a static version of the corresponding file.</P>
608
4744bd90 609
610<H3>Makefile Documentation</H3>
611
a29fd7dd 612<P>Each makefile starts with the standard CUPS header containing the Subversion "&#36;Id$" keyword, description of the file, and CUPS copyright and license notice:</P>
4744bd90 613
614<PRE CLASS="command">
615#
616# "&#36;Id$"
617#
9d661958 618# Makefile for ...
4744bd90 619#
9d661958 620# Copyright 2013 by Apple Inc.
4744bd90 621#
9d661958
MS
622# These coded instructions, statements, and computer programs are the
623# property of Apple Inc. and are protected by Federal copyright
624# law. Distribution and use rights are outlined in the file "LICENSE.txt"
625# which should have been included with this file. If this file is
626# file is missing or damaged, see the license at "http://www.cups.org/".
4744bd90 627#
628</PRE>
629
a29fd7dd 630<P>The end of each makefile has a comment saying:</P>
4744bd90 631
632<PRE CLASS="command">
633#
634# End of "&#36;Id$".
635#
636</PRE>
637
a29fd7dd
MS
638<P>The purpose of the trailer is to indicate the end of the makefile so that truncations are immediately obvious.</P>
639
4744bd90 640
641<H3>Portable Makefile Construction</H3>
642
a29fd7dd 643<P>CUPS uses a common subset of make program syntax to ensure that the software can be compiled "out of the box" on as many systems as possible. The following is a list of assumptions we follow when constructing makefiles:</P>
4744bd90 644
645<UL>
646
a29fd7dd 647 <LI><b>Targets</b>; we assume that the make program supports the notion of simple targets of the form "name:" that perform tab-indented commands that follow the target, e.g.:
4744bd90 648 <PRE CLASS="command">
649target:
650&rarr; target commands</PRE></LI>
651
a29fd7dd 652 <LI><b>Dependencies</b>; we assume that the make program supports recursive dependencies on targets, e.g.:
4744bd90 653 <PRE CLASS="command">
654target: foo bar
655&rarr; target commands
656
657foo: bla
658&rarr; foo commands
659
660bar:
661&rarr; bar commands
662
663bla:
664&rarr; bla commands</PRE></LI>
665
a29fd7dd 666 <LI><b>Variable Definition</b>; we assume that the make program supports variable definition on the command-line or in the makefile using the following form:
4744bd90 667 <PRE CLASS="command">
668name=value</PRE>
669
a29fd7dd 670 <LI><b>Variable Substitution</b>; we assume that the make program supports variable substitution using the following forms:
4744bd90 671 <UL>
672 <LI><CODE>$(name)</CODE>; substitutes the value of "name",</LI>
a29fd7dd
MS
673 <LI><CODE>($name:.old=.new)</CODE>; substitutes the value of "name" with the filename extension ".old" changed to ".new",</LI>
674 <LI><CODE>$(MAKEFLAGS)</CODE>; substitutes the command-line options passed to the program without the leading hyphen (-),</LI>
4744bd90 675 <LI><CODE>$$</CODE>; substitutes a single <CODE>$</CODE> character,</LI>
676 <LI><CODE>$&lt;</CODE>; substitutes the current source file or dependency, and</LI>
677 <LI><CODE>$@</CODE>; substitutes the current target name.</LI>
678 </UL></LI>
679
a29fd7dd 680 <LI><b>Suffixes</b>; we assume that the make program supports filename suffixes with assumed dependencies, e.g.:
4744bd90 681 <PRE CLASS="command">
682.SUFFIXES: .c .o
683.c.o:
684&rarr; $(CC) $(CFLAGS) -o $@ -c $&lt;</PRE></LI>
685
686 <LI><b>Include Files</b>; we assume that the make program
687 supports the <CODE>include</CODE> directive, e.g.:
688 <PRE CLASS="command">
689include ../Makedefs
690include Dependencies</PRE></LI>
691
a29fd7dd 692 <LI><b>Comments</b>; we assume that comments begin with a <CODE>#</CODE> character and proceed to the end of the current line.</LI>
4744bd90 693
a29fd7dd 694 <LI><b>Line Length</b>; we assume that there is no practical limit to the length of lines.</LI>
4744bd90 695
a29fd7dd 696 <LI><b>Continuation of long lines</b>; we assume that the <CODE>\</CODE> character may be placed at the end of a line to concatenate two or more lines in a makefile to form a single long line.</LI>
4744bd90 697
a29fd7dd 698 <LI><b>Shell</b>; we assume a POSIX-compatible shell is present on the build system.</LI>
4744bd90 699
700</UL>
701
a29fd7dd 702
4744bd90 703<H3>Standard Variables</H3>
704
a29fd7dd 705<P>The following variables are defined in the "Makedefs" file generated by the <CODE>autoconf</CODE> software:</P>
4744bd90 706
707<UL>
708
a29fd7dd 709 <LI><CODE>ALL_CFLAGS</CODE>; the combined C compiler options,</LI>
4744bd90 710
a29fd7dd 711 <LI><CODE>ALL_CXXFLAGS</CODE>; the combined C++ compiler options,</LI>
4744bd90 712
a29fd7dd 713 <LI><CODE>AMANDIR</CODE>; the administrative man page installation directory (section 8/1m depending on the platform),</LI>
4744bd90 714
a29fd7dd 715 <LI><CODE>AR</CODE>; the library archiver command,</LI>
4744bd90 716
a29fd7dd 717 <LI><CODE>ARFLAGS</CODE>; options for the library archiver command,</LI>
4744bd90 718
a29fd7dd 719 <LI><CODE>AWK</CODE>; the local awk command,</LI>
4744bd90 720
a29fd7dd 721 <LI><CODE>BINDIR</CODE>; the binary installation directory,</LI>
4744bd90 722
a29fd7dd 723 <LI><CODE>BUILDROOT</CODE>; optional installation prefix (defaults to DSTROOT),</LI>
4744bd90 724
725 <LI><CODE>CC</CODE>; the C compiler command,</LI>
726
727 <LI><CODE>CFLAGS</CODE>; options for the C compiler command,</LI>
728
a29fd7dd
MS
729 <LI><CODE>CHMOD</CODE>; the chmod command,</LI>
730
4744bd90 731 <LI><CODE>CXX</CODE>; the C++ compiler command,</LI>
732
733 <LI><CODE>CXXFLAGS</CODE>; options for the C++ compiler command,</LI>
734
a29fd7dd
MS
735 <LI><CODE>DATADIR</CODE>; the data file installation directory,</LI>
736
737 <LI><CODE>DSO</CODE>; the C shared library building command,</LI>
738
739 <LI><CODE>DSOXX</CODE>; the C++ shared library building command,</LI>
4744bd90 740
741 <LI><CODE>DSOFLAGS</CODE>; options for the shared library building command,</LI>
742
a29fd7dd
MS
743 <LI><CODE>INCLUDEDIR</CODE>; the public header file installation directory,</LI>
744
4744bd90 745 <LI><CODE>INSTALL</CODE>; the <CODE>install</CODE> command,</LI>
746
747 <LI><CODE>INSTALL_BIN</CODE>; the program installation command,</LI>
748
a29fd7dd
MS
749 <LI><CODE>INSTALL_COMPDATA</CODE>; the compressed data file installation command,</LI>
750
751 <LI><CODE>INSTALL_CONFIG</CODE>; the configuration file installation command,</LI>
752
4744bd90 753 <LI><CODE>INSTALL_DATA</CODE>; the data file installation command,</LI>
754
755 <LI><CODE>INSTALL_DIR</CODE>; the directory installation command,</LI>
756
757 <LI><CODE>INSTALL_LIB</CODE>; the library installation command,</LI>
758
759 <LI><CODE>INSTALL_MAN</CODE>; the documentation installation command,</LI>
760
761 <LI><CODE>INSTALL_SCRIPT</CODE>; the shell script installation command,</LI>
762
a29fd7dd
MS
763 <LI><CODE>LD</CODE>; the linker command,</LI>
764
4744bd90 765 <LI><CODE>LDFLAGS</CODE>; options for the linker,</LI>
766
a29fd7dd
MS
767 <LI><CODE>LIBDIR</CODE>; the library installation directory,</LI>
768
4744bd90 769 <LI><CODE>LIBS</CODE>; libraries for all programs,</LI>
770
771 <LI><CODE>LN</CODE>; the <CODE>ln</CODE> command,</LI>
772
a29fd7dd 773 <LI><CODE>MAN1EXT</CODE>; extension for man pages in section 1,</LI>
4744bd90 774
a29fd7dd 775 <LI><CODE>MAN3EXT</CODE>; extension for man pages in section 3,</LI>
4744bd90 776
a29fd7dd 777 <LI><CODE>MAN5EXT</CODE>; extension for man pages in section 5,</LI>
4744bd90 778
a29fd7dd 779 <LI><CODE>MAN7EXT</CODE>; extension for man pages in section 7,</LI>
4744bd90 780
a29fd7dd
MS
781 <LI><CODE>MAN8DIR</CODE>; subdirectory for man pages in section 8,</LI>
782
783 <LI><CODE>MAN8EXT</CODE>; extension for man pages in section 8,</LI>
4744bd90 784
a29fd7dd 785 <LI><CODE>MANDIR</CODE>; the man page installation directory,</LI>
4744bd90 786
a29fd7dd
MS
787 <LI><CODE>OPTIM</CODE>; common compiler optimization options,</LI>
788
789 <LI><CODE>PRIVATEINCLUDE</CODE>; the private header file installation directory,</LI>
4744bd90 790
a29fd7dd 791 <LI><CODE>RM</CODE>; the <CODE>rm</CODE> command,</LI>
4744bd90 792
a29fd7dd 793 <LI><CODE>SHELL</CODE>; the <CODE>sh</CODE> (POSIX shell) command,</LI>
4744bd90 794
a29fd7dd 795 <LI><CODE>STRIP</CODE>; the <CODE>strip</CODE> command,</LI>
4744bd90 796
797 <LI><CODE>srcdir</CODE>; the source directory.</LI>
798
799</UL>
800
a29fd7dd 801
4744bd90 802<H3>Standard Targets</H3>
803
a29fd7dd 804<P>The following standard targets are defined in each makefile:</P>
4744bd90 805
806<UL>
807
a29fd7dd
MS
808 <LI><CODE>all</CODE>; creates all target programs, libraries, and documentation files,</LI>
809
810 <LI><CODE>clean</CODE>; removes all target programs libraries, documentation files, and object files,</LI>
811
812 <LI><CODE>depend</CODE>; generates automatic dependencies for any C or C++ source files (also see <A HREF="#DEPEND_TARGET">"Dependencies"</A>),</LI>
813
814 <LI><CODE>distclean</CODE>; removes autoconf-generated files in addition to those removed by the "clean" target,</LI>
815
816 <LI><CODE>install</CODE>; installs all distribution files in their corresponding locations (also see <A HREF="#INSTALL_TARGET">"Install/Uninstall Support"</A>),</LI>
4744bd90 817
a29fd7dd 818 <LI><CODE>install-data</CODE>; installs all data files in their corresponding locations (also see <A HREF="#INSTALL_TARGET">"Install/Uninstall Support"</A>),</LI>
4744bd90 819
a29fd7dd 820 <LI><CODE>install-exec</CODE>; installs all executable files in their corresponding locations (also see <A HREF="#INSTALL_TARGET">"Install/Uninstall Support"</A>),</LI>
4744bd90 821
a29fd7dd 822 <LI><CODE>install-headers</CODE>; installs all include files in their corresponding locations (also see <A HREF="#INSTALL_TARGET">"Install/Uninstall Support"</A>),</LI>
4744bd90 823
a29fd7dd 824 <LI><CODE>install-libs</CODE>; installs all library files in their corresponding locations (also see <A HREF="#INSTALL_TARGET">"Install/Uninstall Support"</A>),</LI>
4744bd90 825
a29fd7dd 826 <LI><CODE>uninstall</CODE>; removes all distribution files from their corresponding locations (also see <A HREF="#INSTALL_TARGET">"Install/Uninstall Support"</A>), and</LI>
4744bd90 827
828</UL>
829
830
831<H3>Object Files</H3>
832
a29fd7dd
MS
833<P>Object files (the result of compiling a C or C++ source file) have the extension ".o".</P>
834
4744bd90 835
836<H3>Programs</H3>
837
a29fd7dd 838<P>Program files are the result of linking object files and libraries together to form an executable file. A typical program target looks like:</P>
4744bd90 839
840<PRE CLASS="command">
841program: $(OBJS)
842&rarr; echo Linking $@...
843&rarr; $(CC) $(LDFLAGS) -o $@ $(OBJS) $(LIBS)
844</PRE>
845
a29fd7dd 846
4744bd90 847<H3>Static Libraries</H3>
848
a29fd7dd 849<P>Static libraries have a prefix of "lib" and the extension ".a". A typical static library target looks like:</P>
4744bd90 850
851<PRE CLASS="command">
852libname.a: $(OBJECTS)
853&rarr; echo Creating $@...
854&rarr; $(RM) $@
855&rarr; $(AR) $(ARFLAGS) $@ $(OBJECTS)
856&rarr; $(RANLIB) $@
857</PRE>
858
a29fd7dd 859
4744bd90 860<H3>Shared Libraries</H3>
861
a29fd7dd 862<P>Shared libraries have a prefix of "lib" and the extension ".dylib", ".sl", ".so", or "_s.a" depending on the operating system. A typical shared library is composed of several targets that look like:</P>
4744bd90 863
864<PRE CLASS="command">
865libname.so: $(OBJECTS)
866&rarr; echo $(DSOCOMMAND) libname.so.$(DSOVERSION) ...
867&rarr; $(DSOCOMMAND) libname.so.$(DSOVERSION) $(OBJECTS)
868&rarr; $(RM) libname.so libname.so.$(DSOMAJOR)
869&rarr; $(LN) libname.so.$(DSOVERSION) libname.so.$(DSOMAJOR)
870&rarr; $(LN) libname.so.$(DSOVERSION) libname.so
871
872libname.sl: $(OBJECTS)
873&rarr; echo $(DSOCOMMAND) libname.sl.$(DSOVERSION) ...
874&rarr; $(DSOCOMMAND) libname.sl.$(DSOVERSION) $(OBJECTS)
875&rarr; $(RM) libname.sl libname.sl.$(DSOMAJOR)
876&rarr; $(LN) libname.sl.$(DSOVERSION) libname.sl.$(DSOMAJOR)
877&rarr; $(LN) libname.sl.$(DSOVERSION) libname.sl
878
879libname.dylib: $(OBJECTS)
880&rarr; echo $(DSOCOMMAND) libname.$(DSOVERSION).dylib ...
881&rarr; $(DSOCOMMAND) libname.$(DSOVERSION).dylib \
882&rarr; &rarr; -install_name $(libdir)/libname.$(DSOMAJOR).dylib \
883&rarr; &rarr; -current_version libname.$(DSOVERSION).dylib \
884&rarr; &rarr; -compatibility_version $(DSOMAJOR).0 \
885&rarr; &rarr; $(OBJECTS) $(LIBS)
886&rarr; $(RM) libname.dylib
887&rarr; $(RM) libname.$(DSOMAJOR).dylib
888&rarr; $(LN) libname.$(DSOVERSION).dylib libname.$(DSOMAJOR).dylib
889&rarr; $(LN) libname.$(DSOVERSION).dylib libname.dylib
890
891libname_s.a: $(OBJECTS)
892&rarr; echo $(DSOCOMMAND) libname_s.o ...
893&rarr; $(DSOCOMMAND) libname_s.o $(OBJECTS) $(LIBS)
894&rarr; echo $(LIBCOMMAND) libname_s.a libname_s.o
895&rarr; $(RM) $@
896&rarr; $(LIBCOMMAND) libname_s.a libname_s.o
897&rarr; $(CHMOD) +x libname_s.a
898</PRE>
899
900
901<H3>Dependencies</H3>
902
a29fd7dd 903<P>Static dependencies are expressed in each makefile following the target, for example:</P>
4744bd90 904
905<PRE CLASS="command">
906foo: bar
907</PRE>
908
a29fd7dd 909<P>Static dependencies are only used when it is not possible to automatically generate them. Automatic dependencies are stored in a file named "Dependencies" and included at the end of the makefile. The following "depend" target rule is used to create the automatic dependencies:
4744bd90 910
911<PRE CLASS="command">
912depend:
a29fd7dd 913&rarr; $(CC) -MM $(ALL_CFLAGS) $(OBJS:.o=.c) >Dependencies
4744bd90 914</PRE>
915
a29fd7dd
MS
916<P>We regenerate the automatic dependencies on an OS X system and express any non-OS X dependencies statically in the makefile.</P>
917
4744bd90 918
919<H3><A NAME="TARGET_INSTALL">Install/Uninstall Support</A></H3>
920
a29fd7dd
MS
921<P>All makefiles contains install and uninstall rules which install or remove the corresponding software. These rules must use the <CODE>$(BUILDROOT)</CODE> variable as a prefix to any installation directory so that CUPS can be installed in a temporary location for packaging by programs like <CODE>rpmbuild</CODE>.</P>
922
923<P>The <CODE>$(INSTALL_BIN)</CODE>, <CODE>$(INSTALL_COMPDATA)</CODE>, <CODE>$(INSTALL_CONFIG)</CODE>, <CODE>$(INSTALL_DATA)</CODE>, <CODE>$(INSTALL_DIR)</CODE>, <CODE>$(INSTALL_LIB)</CODE>, <CODE>$(INSTALL_MAN)</CODE>, and <CODE>$(INSTALL_SCRIPT)</CODE> variables must be used when installing files so that the proper ownership and permissions are set on the installed files.</P>
924
925<P>The <CODE>$(RANLIB)</CODE> command must be run on any static libraries after installation since the symbol table is invalidated when the library is copied on some platforms.</P>
4744bd90 926
927</BODY>
928</HTML>