(main): Move checks .IGNORE, .SILENT, .POSIX to snap_deps.
[make.git] / make-stds.texi
blob95a42ec7862e21ad301bb4391cdc5b51220d3192
1 @comment This file is included by both standards.texi and make.texinfo.
2 @comment It was broken out of standards.texi on 1/6/93 by roland.
4 @node Makefile Conventions
5 @chapter Makefile Conventions
6 @comment standards.texi does not print an index, but make.texinfo does.
7 @cindex makefile, conventions for
8 @cindex conventions for makefiles
9 @cindex standards for makefiles
11 This chapter describes conventions for writing the Makefiles for GNU programs.
13 @menu
14 * Makefile Basics::
15 * Utilities in Makefiles::
16 * Standard Targets::
17 * Command Variables::
18 * Directory Variables::
19 @end menu
21 @node Makefile Basics
22 @section General Conventions for Makefiles
24 Every Makefile should contain this line:
26 @example
27 SHELL = /bin/sh
28 @end example
30 @noindent
31 to avoid trouble on systems where the @code{SHELL} variable might be
32 inherited from the environment.  (This is never a problem with GNU
33 @code{make}.)
35 Different @code{make} programs have incompatible suffix lists and
36 implicit rules, and this sometimes creates confusion or misbehavior.  So
37 it is a good idea to set the suffix list explicitly using only the
38 suffixes you need in the particular Makefile, like this:
40 @example
41 .SUFFIXES:
42 .SUFFIXES: .c .o
43 @end example
45 @noindent
46 The first line clears out the suffix list, the second introduces all
47 suffixes which may be subject to implicit rules in this Makefile.
49 Don't assume that @file{.} is in the path for command execution.  When
50 you need to run programs that are a part of your package during the
51 make, please make sure that it uses @file{./} if the program is built as
52 part of the make or @file{$(srcdir)/} if the file is an unchanging part
53 of the source code.  Without one of these prefixes, the current search
54 path is used.  
56 The distinction between @file{./} and @file{$(srcdir)/} is important
57 when using the @samp{--srcdir} option to @file{configure}.  A rule of
58 the form:
60 @smallexample
61 foo.1 : foo.man sedscript
62         sed -e sedscript foo.man > foo.1
63 @end smallexample
65 @noindent
66 will fail when the current directory is not the source directory,
67 because @file{foo.man} and @file{sedscript} are not in the current
68 directory.
70 When using GNU @code{make}, relying on @samp{VPATH} to find the source
71 file will work in the case where there is a single dependency file,
72 since the @file{make} automatic variable @samp{$<} will represent the
73 source file wherever it is.  (Many versions of @code{make} set @samp{$<}
74 only in implicit rules.)  A makefile target like
76 @smallexample
77 foo.o : bar.c
78         $(CC) -I. -I$(srcdir) $(CFLAGS) -c bar.c -o foo.o
79 @end smallexample
81 @noindent
82 should instead be written as
84 @smallexample
85 foo.o : bar.c
86         $(CC) -I. -I$(srcdir) $(CFLAGS) -c $< -o $@@
87 @end smallexample
89 @noindent
90 in order to allow @samp{VPATH} to work correctly.  When the target has
91 multiple dependencies, using an explicit @samp{$(srcdir)} is the easiest
92 way to make the rule work well.  For example, the target above for
93 @file{foo.1} is best written as:
95 @smallexample
96 foo.1 : foo.man sedscript
97         sed -e $(srcdir)/sedscript $(srcdir)/foo.man > $@@
98 @end smallexample
100 @node Utilities in Makefiles
101 @section Utilities in Makefiles
103 Write the Makefile commands (and any shell scripts, such as
104 @code{configure}) to run in @code{sh}, not in @code{csh}.  Don't use any
105 special features of @code{ksh} or @code{bash}.
107 The @code{configure} script and the Makefile rules for building and
108 installation should not use any utilities directly except these:
110 @example
111 cat cmp cp echo egrep expr grep
112 ln mkdir mv pwd rm rmdir sed test touch
113 @end example
115 Stick to the generally supported options for these programs.  For
116 example, don't use @samp{mkdir -p}, convenient as it may be, because
117 most systems don't support it.
119 The Makefile rules for building and installation can also use compilers
120 and related programs, but should do so via @code{make} variables so that the
121 user can substitute alternatives.  Here are some of the programs we
122 mean:
124 @example
125 ar bison cc flex install ld lex
126 make makeinfo ranlib texi2dvi yacc
127 @end example
129 Use the following @code{make} variables:
131 @example
132 $(AR) $(BISON) $(CC) $(FLEX) $(INSTALL) $(LD) $(LEX)
133 $(MAKE) $(MAKEINFO) $(RANLIB) $(TEXI2DVI) $(YACC)
134 @end example
136 When you use @code{ranlib}, you should make sure nothing bad happens if
137 the system does not have @code{ranlib}.  Arrange to ignore an error
138 from that command, and print a message before the command to tell the
139 user that failure of the @code{ranlib} command does not mean a problem.
141 If you use symbolic links, you should implement a fallback for systems
142 that don't have symbolic links.
144 It is ok to use other utilities in Makefile portions (or scripts)
145 intended only for particular systems where you know those utilities to
146 exist.
148 @node Standard Targets
149 @section Standard Targets for Users
151 All GNU programs should have the following targets in their Makefiles:
153 @table @samp
154 @item all
155 Compile the entire program.  This should be the default target.  This
156 target need not rebuild any documentation files; Info files should
157 normally be included in the distribution, and DVI files should be made
158 only when explicitly asked for.
160 @item install
161 Compile the program and copy the executables, libraries, and so on to
162 the file names where they should reside for actual use.  If there is a
163 simple test to verify that a program is properly installed, this target
164 should run that test.
166 The commands should create all the directories in which files are to be
167 installed, if they don't already exist.  This includes the directories
168 specified as the values of the variables @code{prefix} and
169 @code{exec_prefix}, as well as all subdirectories that are needed.
170 One way to do this is by means of an @code{installdirs} target
171 as described below.
173 Use @samp{-} before any command for installing a man page, so that
174 @code{make} will ignore any errors.  This is in case there are systems
175 that don't have the Unix man page documentation system installed.
177 The way to install Info files is to copy them into @file{$(infodir)}
178 with @code{$(INSTALL_DATA)} (@pxref{Command Variables}), and then run
179 the @code{install-info} program if it is present.  @code{install-info}
180 is a script that edits the Info @file{dir} file to add or update the
181 menu entry for the given Info file; it will be part of the Texinfo package.
182 Here is a sample rule to install an Info file:
184 @comment This example has been carefully formatted for the Make manual.
185 @comment Please do not reformat it without talking to roland@gnu.ai.mit.edu.
186 @smallexample
187 $(infodir)/foo.info: foo.info
188 # There may be a newer info file in . than in srcdir.
189         -if test -f foo.info; then d=.; \
190          else d=$(srcdir); fi; \
191         $(INSTALL_DATA) $$d/foo.info $@@; \
192 # Run install-info only if it exists.
193 # Use `if' instead of just prepending `-' to the
194 # line so we notice real errors from install-info.
195 # We use `$(SHELL) -c' because some shells do not
196 # fail gracefully when there is an unknown command.
197         if $(SHELL) -c 'install-info --version' \
198            >/dev/null 2>&1; then \
199           install-info --infodir=$(infodir) $$d/foo.info; \
200         else true; fi
201 @end smallexample
203 @item uninstall
204 Delete all the installed files that the @samp{install} target would
205 create (but not the noninstalled files such as @samp{make all} would
206 create).
208 @comment The gratuitous blank line here is to make the table look better
209 @comment in the printed Make manual.  Please leave it in.
210 @item clean
212 Delete all files from the current directory that are normally created by
213 building the program.  Don't delete the files that record the
214 configuration.  Also preserve files that could be made by building, but
215 normally aren't because the distribution comes with them.
217 Delete @file{.dvi} files here if they are not part of the distribution.
219 @item distclean
220 Delete all files from the current directory that are created by
221 configuring or building the program.  If you have unpacked the source
222 and built the program without creating any other files, @samp{make
223 distclean} should leave only the files that were in the distribution.
225 @item mostlyclean
226 Like @samp{clean}, but may refrain from deleting a few files that people
227 normally don't want to recompile.  For example, the @samp{mostlyclean}
228 target for GCC does not delete @file{libgcc.a}, because recompiling it
229 is rarely necessary and takes a lot of time.
231 @item realclean
232 Delete everything from the current directory that can be reconstructed
233 with this Makefile.  This typically includes everything deleted by
234 @code{distclean}, plus more: C source files produced by Bison, tags tables,
235 Info files, and so on.
237 One exception, however: @samp{make realclean} should not delete
238 @file{configure} even if @file{configure} can be remade using a rule in
239 the Makefile.  More generally, @samp{make realclean} should not delete
240 anything that needs to exist in order to run @file{configure}
241 and then begin to build the program.
243 @item TAGS
244 Update a tags table for this program.
246 @item info
247 Generate any Info files needed.  The best way to write the rules is as
248 follows:
250 @smallexample
251 info: foo.info
253 foo.info: foo.texi chap1.texi chap2.texi
254         $(MAKEINFO) $(srcdir)/foo.texi
255 @end smallexample
257 @noindent
258 You must define the variable @code{MAKEINFO} in the Makefile.  It should
259 run the @code{makeinfo} program, which is part of the Texinfo
260 distribution.
262 @item dvi
263 Generate DVI files for all TeXinfo documentation.  
264 For example:
266 @smallexample
267 dvi: foo.dvi
269 foo.dvi: foo.texi chap1.texi chap2.texi
270         $(TEXI2DVI) $(srcdir)/foo.texi
271 @end smallexample
273 @noindent
274 You must define the variable @code{TEXI2DVI} in the Makefile.  It should
275 run the program @code{texi2dvi}, which is part of the Texinfo
276 distribution.  Alternatively, write just the dependencies, and allow GNU
277 Make to provide the command.
279 @item dist
280 Create a distribution tar file for this program.  The tar file should be
281 set up so that the file names in the tar file start with a subdirectory
282 name which is the name of the package it is a distribution for.  This
283 name can include the version number.
285 For example, the distribution tar file of GCC version 1.40 unpacks into
286 a subdirectory named @file{gcc-1.40}.
288 The easiest way to do this is to create a subdirectory appropriately
289 named, use @code{ln} or @code{cp} to install the proper files in it, and
290 then @code{tar} that subdirectory.
292 The @code{dist} target should explicitly depend on all non-source files
293 that are in the distribution, to make sure they are up to date in the
294 distribution.  
295 @xref{Releases, , Making Releases, standards, GNU Coding Standards}.
297 @item check
298 Perform self-tests (if any).  The user must build the program before
299 running the tests, but need not install the program; you should write
300 the self-tests so that they work when the program is built but not
301 installed.
302 @end table
304 The following targets are suggested as conventional names, for programs
305 in which they are useful.
307 @table @code
308 @item installcheck
309 Perform installation tests (if any).  The user must build and install
310 the program before running the tests.  You should not assume that
311 @file{$(bindir)} is in the search path.  
313 @item installdirs
314 It's useful to add a target named @samp{installdirs} to create the
315 directories where files are installed, and their parent directories.
316 There is a script called @file{mkinstalldirs} which is convenient for
317 this; find it in the Texinfo package.@c It's in /gd/gnu/lib/mkinstalldirs.
318 You can use a rule like this:
320 @comment This has been carefully formatted to look decent in the Make manual.
321 @comment Please be sure not to make it extend any further to the right.--roland
322 @smallexample
323 # Make sure all installation directories (e.g. $(bindir))
324 # actually exist by making them if necessary.
325 installdirs: mkinstalldirs
326         $(srcdir)/mkinstalldirs $(bindir) $(datadir) \
327                                 $(libdir) $(infodir) \
328                                 $(mandir)
329 @end smallexample
330 @end table
332 @node Command Variables
333 @section Variables for Specifying Commands
335 Makefiles should provide variables for overriding certain commands, options,
336 and so on.
338 In particular, you should run most utility programs via variables.
339 Thus, if you use Bison, have a variable named @code{BISON} whose default
340 value is set with @samp{BISON = bison}, and refer to it with
341 @code{$(BISON)} whenever you need to use Bison.
343 File management utilities such as @code{ln}, @code{rm}, @code{mv}, and
344 so on, need not be referred to through variables in this way, since users
345 don't need to replace them with other programs.
347 Each program-name variable should come with an options variable that is
348 used to supply options to the program.  Append @samp{FLAGS} to the
349 program-name variable name to get the options variable name---for
350 example, @code{BISONFLAGS}.  (The name @code{CFLAGS} is an exception to
351 this rule, but we keep it because it is standard.)  Use @code{CPPFLAGS}
352 in any compilation command that runs the preprocessor, and use
353 @code{LDFLAGS} in any compilation command that does linking as well as
354 in any direct use of @code{ld}.
356 If there are C compiler options that @emph{must} be used for proper
357 compilation of certain files, do not include them in @code{CFLAGS}.
358 Users expect to be able to specify @code{CFLAGS} freely themselves.
359 Instead, arrange to pass the necessary options to the C compiler
360 independently of @code{CFLAGS}, by writing them explicitly in the
361 compilation commands or by defining an implicit rule, like this:
363 @smallexample
364 CFLAGS = -g
365 ALL_CFLAGS = -I. $(CFLAGS)
366 .c.o:
367         $(CC) -c $(CPPFLAGS) $(ALL_CFLAGS) $<
368 @end smallexample
370 Do include the @samp{-g} option in @code{CFLAGS}, because that is not
371 @emph{required} for proper compilation.  You can consider it a default
372 that is only recommended.  If the package is set up so that it is
373 compiled with GCC by default, then you might as well include @samp{-O}
374 in the default value of @code{CFLAGS} as well.
376 Put @code{CFLAGS} last in the compilation command, after other variables
377 containing compiler options, so the user can use @code{CFLAGS} to
378 override the others.
380 Every Makefile should define the variable @code{INSTALL}, which is the
381 basic command for installing a file into the system.
383 Every Makefile should also define the variables @code{INSTALL_PROGRAM}
384 and @code{INSTALL_DATA}.  (The default for each of these should be
385 @code{$(INSTALL)}.)  Then it should use those variables as the commands
386 for actual installation, for executables and nonexecutables
387 respectively.  Use these variables as follows:
389 @example
390 $(INSTALL_PROGRAM) foo $(bindir)/foo
391 $(INSTALL_DATA) libfoo.a $(libdir)/libfoo.a
392 @end example
394 @noindent
395 Always use a file name, not a directory name, as the second argument of
396 the installation commands.  Use a separate command for each file to be
397 installed.
399 @node Directory Variables
400 @section Variables for Installation Directories
402 Installation directories should always be named by variables, so it is
403 easy to install in a nonstandard place.  The standard names for these
404 variables are as follows.
406 These two variables set the root for the installation.  All the other
407 installation directories should be subdirectories of one of these two,
408 and nothing should be directly installed into these two directories.
410 @table @samp
411 @item prefix
412 A prefix used in constructing the default values of the variables listed
413 below.  The default value of @code{prefix} should be @file{/usr/local}
414 (at least for now).
416 @item exec_prefix
417 A prefix used in constructing the default values of some of the
418 variables listed below.  The default value of @code{exec_prefix} should
419 be @code{$(prefix)}.
421 Generally, @code{$(exec_prefix)} is used for directories that contain
422 machine-specific files (such as executables and subroutine libraries),
423 while @code{$(prefix)} is used directly for other directories.
424 @end table
426 Executable programs are installed in one of the following directories.
428 @table @samp
429 @item bindir
430 The directory for installing executable programs that users can run.
431 This should normally be @file{/usr/local/bin}, but write it as
432 @file{$(exec_prefix)/bin}.
434 @item sbindir
435 The directory for installing executable programs that can be run from
436 the shell, but are only generally useful to system administrators.  This
437 should normally be @file{/usr/local/sbin}, but write it as
438 @file{$(exec_prefix)/sbin}.
440 @item libexecdir
441 @comment This paragraph adjusted to avoid overfull hbox --roland 5jul94
442 The directory for installing executable programs to be run by other
443 programs rather than by users.  This directory should normally be
444 @file{/usr/local/libexec}, but write it as @file{$(exec_prefix)/libexec}.
445 @end table
447 Data files used by the program during its execution are divided into
448 categories in two ways.
450 @itemize @bullet
451 @item
452 Some files are normally modified by programs; others are never normally
453 modified (though users may edit some of these).
455 @item
456 Some files are architecture-independent and can be shared by all
457 machines at a site; some are architecture-dependent and can be shared
458 only by machines of the same kind and operating system; others may never
459 be shared between two machines.
460 @end itemize
462 This makes for six different possibilities.  However, we want to
463 discourage the use of architecture-dependent files, aside from of object
464 files and libraries.  It is much cleaner to make other data files
465 architecture-independent, and it is generally not hard.
467 Therefore, here are the variables makefiles should use to specify
468 directories:
470 @table @samp
471 @item datadir
472 The directory for installing read-only architecture independent data
473 files.  This should normally be @file{/usr/local/share}, but write it as
474 @file{$(prefix)/share}.  As a special exception, see @file{$(infodir)}
475 and @file{$(includedir)} below.
477 @item sysconfdir
478 The directory for installing read-only data files that pertain to a
479 single machine--that is to say, files for configuring a host.  Mailer
480 and network configuration files, @file{/etc/passwd}, and so forth belong
481 here.  All the files in this directory should be ordinary ASCII text
482 files.  This directory should normally be @file{/usr/local/etc}, but
483 write it as @file{$(prefix)/etc}.
485 @c rewritten to avoid overfull hbox --tower
486 Do not install executables
487 @c here
488 in this directory (they probably
489 belong in @file{$(libexecdir)} or @file{$(sbindir))}.  Also do not
490 install files that are modified in the normal course of their use
491 (programs whose purpose is to change the configuration of the system
492 excluded).  Those probably belong in @file{$(localstatedir)}.
494 @item sharedstatedir
495 The directory for installing architecture-independent data files which
496 the programs modify while they run.  This should normally be
497 @file{/usr/local/com}, but write it as @file{$(prefix)/com}.
499 @item localstatedir
500 The directory for installing data files which the programs modify while
501 they run, and that pertain to one specific machine.  Users should never
502 need to modify files in this directory to configure the package's
503 operation; put such configuration information in separate files that go
504 in @file{datadir} or @file{$(sysconfdir)}.  @file{$(localstatedir)}
505 should normally be @file{/usr/local/var}, but write it as
506 @file{$(prefix)/var}.
508 @item libdir
509 The directory for object files and libraries of object code.  Do not
510 install executables here, they probably belong in @file{$(libexecdir)}
511 instead.  The value of @code{libdir} should normally be
512 @file{/usr/local/lib}, but write it as @file{$(exec_prefix)/lib}.
514 @item infodir
515 The directory for installing the Info files for this package.  By
516 default, it should be @file{/usr/local/info}, but it should be written
517 as @file{$(prefix)/info}.
519 @item includedir
520 @c rewritten to avoid overfull hbox --roland
521 The directory for installing header files to be included by user
522 programs with the C @samp{#include} preprocessor directive.  This
523 should normally be @file{/usr/local/include}, but write it as
524 @file{$(prefix)/include}.
526 Most compilers other than GCC do not look for header files in
527 @file{/usr/local/include}.  So installing the header files this way is
528 only useful with GCC.  Sometimes this is not a problem because some
529 libraries are only really intended to work with GCC.  But some libraries
530 are intended to work with other compilers.  They should install their
531 header files in two places, one specified by @code{includedir} and one
532 specified by @code{oldincludedir}.
534 @item oldincludedir
535 The directory for installing @samp{#include} header files for use with
536 compilers other than GCC.  This should normally be @file{/usr/include}.
538 The Makefile commands should check whether the value of
539 @code{oldincludedir} is empty.  If it is, they should not try to use
540 it; they should cancel the second installation of the header files.
542 A package should not replace an existing header in this directory unless
543 the header came from the same package.  Thus, if your Foo package
544 provides a header file @file{foo.h}, then it should install the header
545 file in the @code{oldincludedir} directory if either (1) there is no
546 @file{foo.h} there or (2) the @file{foo.h} that exists came from the Foo
547 package.
549 To tell whether @file{foo.h} came from the Foo package, put a magic
550 string in the file---part of a comment---and grep for that string.
551 @end table
553 Unix-style man pages are installed in one of the following:
555 @table @samp
556 @item mandir
557 The directory for installing the man pages (if any) for this package.
558 It should include the suffix for the proper section of the
559 manual---usually @samp{1} for a utility.  It will normally be
560 @file{/usr/local/man/man1}, but you should write it as
561 @file{$(prefix)/man/man1}. 
563 @item man1dir
564 The directory for installing section 1 man pages.
565 @item man2dir
566 The directory for installing section 2 man pages.
567 @item @dots{}
568 Use these names instead of @samp{mandir} if the package needs to install man
569 pages in more than one section of the manual.
571 @strong{Don't make the primary documentation for any GNU software be a
572 man page.  Write a manual in Texinfo instead.  Man pages are just for
573 the sake of people running GNU software on Unix, which is a secondary
574 application only.}
576 @item manext
577 The file name extension for the installed man page.  This should contain
578 a period followed by the appropriate digit; it should normally be @samp{.1}.
580 @item man1ext
581 The file name extension for installed section 1 man pages.
582 @item man2ext
583 The file name extension for installed section 2 man pages.
584 @item @dots{}
585 Use these names instead of @samp{manext} if the package needs to install man
586 pages in more than one section of the manual.
587 @end table
589 And finally, you should set the following variable:
591 @table @samp
592 @item srcdir
593 The directory for the sources being compiled.  The value of this
594 variable is normally inserted by the @code{configure} shell script.
595 @end table
597 For example:
599 @smallexample
600 @c I have changed some of the comments here slightly to fix an overfull
601 @c hbox, so the make manual can format correctly. --roland
602 # Common prefix for installation directories.
603 # NOTE: This directory must exist when you start the install.
604 prefix = /usr/local
605 exec_prefix = $(prefix)
606 # Where to put the executable for the command `gcc'.
607 bindir = $(exec_prefix)/bin
608 # Where to put the directories used by the compiler.
609 libexecdir = $(exec_prefix)/libexec
610 # Where to put the Info files.
611 infodir = $(prefix)/info
612 @end smallexample
614 If your program installs a large number of files into one of the
615 standard user-specified directories, it might be useful to group them
616 into a subdirectory particular to that program.  If you do this, you
617 should write the @code{install} rule to create these subdirectories.
619 Do not expect the user to include the subdirectory name in the value of
620 any of the variables listed above.  The idea of having a uniform set of
621 variable names for installation directories is to enable the user to
622 specify the exact same values for several different GNU packages.  In
623 order for this to be useful, all the packages must be designed so that
624 they will work sensibly when the user does so.