autoupdate
[gnulib.git] / doc / make-stds.texi
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.
3
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
10
11 @c Copyright 1992, 1993, 1994, 1995, 1996, 1997, 1998, 2000, 2001,
12 @c 2004, 2005, 2006, 2007, 2008, 2010 Free Software Foundation, Inc.
13 @c
14 @c Permission is granted to copy, distribute and/or modify this document
15 @c under the terms of the GNU Free Documentation License, Version 1.3
16 @c or any later version published by the Free Software Foundation;
17 @c with no Invariant Sections, with no
18 @c Front-Cover Texts, and with no Back-Cover Texts.
19 @c A copy of the license is included in the section entitled ``GNU
20 @c Free Documentation License''.
21
22 This
23 @ifinfo
24 node
25 @end ifinfo
26 @iftex
27 @ifset CODESTD
28 section
29 @end ifset
30 @ifclear CODESTD
31 chapter
32 @end ifclear
33 @end iftex
34 describes conventions for writing the Makefiles for GNU programs.
35 Using Automake will help you write a Makefile that follows these
36 conventions.  For more information on portable Makefiles, see
37 @sc{posix} and @ref{Portable Make, Portable Make Programming,, autoconf,
38 Autoconf}.
39
40
41 @menu
42 * Makefile Basics::             General conventions for Makefiles.
43 * Utilities in Makefiles::      Utilities to be used in Makefiles.
44 * Command Variables::           Variables for specifying commands.
45 * DESTDIR::                     Supporting staged installs.
46 * Directory Variables::         Variables for installation directories.
47 * Standard Targets::            Standard targets for users.
48 * Install Command Categories::  Three categories of commands in the `install'
49                                   rule: normal, pre-install and post-install.
50 @end menu
51
52 @node Makefile Basics
53 @section General Conventions for Makefiles
54
55 Every Makefile should contain this line:
56
57 @example
58 SHELL = /bin/sh
59 @end example
60
61 @noindent
62 to avoid trouble on systems where the @code{SHELL} variable might be
63 inherited from the environment.  (This is never a problem with GNU
64 @code{make}.)
65
66 Different @code{make} programs have incompatible suffix lists and
67 implicit rules, and this sometimes creates confusion or misbehavior.  So
68 it is a good idea to set the suffix list explicitly using only the
69 suffixes you need in the particular Makefile, like this:
70
71 @example
72 .SUFFIXES:
73 .SUFFIXES: .c .o
74 @end example
75
76 @noindent
77 The first line clears out the suffix list, the second introduces all
78 suffixes which may be subject to implicit rules in this Makefile.
79
80 Don't assume that @file{.} is in the path for command execution.  When
81 you need to run programs that are a part of your package during the
82 make, please make sure that it uses @file{./} if the program is built as
83 part of the make or @file{$(srcdir)/} if the file is an unchanging part
84 of the source code.  Without one of these prefixes, the current search
85 path is used.
86
87 The distinction between @file{./} (the @dfn{build directory}) and
88 @file{$(srcdir)/} (the @dfn{source directory}) is important because
89 users can build in a separate directory using the @samp{--srcdir} option
90 to @file{configure}.  A rule of the form:
91
92 @smallexample
93 foo.1 : foo.man sedscript
94         sed -f sedscript foo.man > foo.1
95 @end smallexample
96
97 @noindent
98 will fail when the build directory is not the source directory, because
99 @file{foo.man} and @file{sedscript} are in the source directory.
100
101 When using GNU @code{make}, relying on @samp{VPATH} to find the source
102 file will work in the case where there is a single dependency file,
103 since the @code{make} automatic variable @samp{$<} will represent the
104 source file wherever it is.  (Many versions of @code{make} set @samp{$<}
105 only in implicit rules.)  A Makefile target like
106
107 @smallexample
108 foo.o : bar.c
109         $(CC) -I. -I$(srcdir) $(CFLAGS) -c bar.c -o foo.o
110 @end smallexample
111
112 @noindent
113 should instead be written as
114
115 @smallexample
116 foo.o : bar.c
117         $(CC) -I. -I$(srcdir) $(CFLAGS) -c $< -o $@@
118 @end smallexample
119
120 @noindent
121 in order to allow @samp{VPATH} to work correctly.  When the target has
122 multiple dependencies, using an explicit @samp{$(srcdir)} is the easiest
123 way to make the rule work well.  For example, the target above for
124 @file{foo.1} is best written as:
125
126 @smallexample
127 foo.1 : foo.man sedscript
128         sed -f $(srcdir)/sedscript $(srcdir)/foo.man > $@@
129 @end smallexample
130
131 GNU distributions usually contain some files which are not source
132 files---for example, Info files, and the output from Autoconf, Automake,
133 Bison or Flex.  Since these files normally appear in the source
134 directory, they should always appear in the source directory, not in the
135 build directory.  So Makefile rules to update them should put the
136 updated files in the source directory.
137
138 However, if a file does not appear in the distribution, then the
139 Makefile should not put it in the source directory, because building a
140 program in ordinary circumstances should not modify the source directory
141 in any way.
142
143 Try to make the build and installation targets, at least (and all their
144 subtargets) work correctly with a parallel @code{make}.
145
146 @node Utilities in Makefiles
147 @section Utilities in Makefiles
148
149 Write the Makefile commands (and any shell scripts, such as
150 @code{configure}) to run under @code{sh} (both the traditional Bourne
151 shell and the @sc{posix} shell), not @code{csh}.  Don't use any
152 special features of @code{ksh} or @code{bash}, or @sc{posix} features
153 not widely supported in traditional Bourne @code{sh}.
154
155 The @code{configure} script and the Makefile rules for building and
156 installation should not use any utilities directly except these:
157
158 @c dd find
159 @c gunzip gzip md5sum
160 @c mkfifo mknod tee uname
161
162 @example
163 awk cat cmp cp diff echo egrep expr false grep install-info
164 ln ls mkdir mv pwd rm rmdir sed sleep sort tar test touch tr true
165 @end example
166
167 Compression programs such as @code{gzip} can be used in the
168 @code{dist} rule.
169
170 Generally, stick to the widely-supported (usually
171 @sc{posix}-specified) options and features of these programs.  For
172 example, don't use @samp{mkdir -p}, convenient as it may be, because a
173 few systems don't support it at all and with others, it is not safe
174 for parallel execution.  For a list of known incompatibilities, see
175 @ref{Portable Shell, Portable Shell Programming,, autoconf, Autoconf}.
176
177
178 It is a good idea to avoid creating symbolic links in makefiles, since a
179 few file systems don't support them.
180
181 The Makefile rules for building and installation can also use compilers
182 and related programs, but should do so via @code{make} variables so that the
183 user can substitute alternatives.  Here are some of the programs we
184 mean:
185
186 @example
187 ar bison cc flex install ld ldconfig lex
188 make makeinfo ranlib texi2dvi yacc
189 @end example
190
191 Use the following @code{make} variables to run those programs:
192
193 @example
194 $(AR) $(BISON) $(CC) $(FLEX) $(INSTALL) $(LD) $(LDCONFIG) $(LEX)
195 $(MAKE) $(MAKEINFO) $(RANLIB) $(TEXI2DVI) $(YACC)
196 @end example
197
198 When you use @code{ranlib} or @code{ldconfig}, you should make sure
199 nothing bad happens if the system does not have the program in question.
200 Arrange to ignore an error from that command, and print a message before
201 the command to tell the user that failure of this command does not mean
202 a problem.  (The Autoconf @samp{AC_PROG_RANLIB} macro can help with
203 this.)
204
205 If you use symbolic links, you should implement a fallback for systems
206 that don't have symbolic links.
207
208 Additional utilities that can be used via Make variables are:
209
210 @example
211 chgrp chmod chown mknod
212 @end example
213
214 It is ok to use other utilities in Makefile portions (or scripts)
215 intended only for particular systems where you know those utilities
216 exist.
217
218 @node Command Variables
219 @section Variables for Specifying Commands
220
221 Makefiles should provide variables for overriding certain commands, options,
222 and so on.
223
224 In particular, you should run most utility programs via variables.
225 Thus, if you use Bison, have a variable named @code{BISON} whose default
226 value is set with @samp{BISON = bison}, and refer to it with
227 @code{$(BISON)} whenever you need to use Bison.
228
229 File management utilities such as @code{ln}, @code{rm}, @code{mv}, and
230 so on, need not be referred to through variables in this way, since users
231 don't need to replace them with other programs.
232
233 Each program-name variable should come with an options variable that is
234 used to supply options to the program.  Append @samp{FLAGS} to the
235 program-name variable name to get the options variable name---for
236 example, @code{BISONFLAGS}.  (The names @code{CFLAGS} for the C
237 compiler, @code{YFLAGS} for yacc, and @code{LFLAGS} for lex, are
238 exceptions to this rule, but we keep them because they are standard.)
239 Use @code{CPPFLAGS} in any compilation command that runs the
240 preprocessor, and use @code{LDFLAGS} in any compilation command that
241 does linking as well as in any direct use of @code{ld}.
242
243 If there are C compiler options that @emph{must} be used for proper
244 compilation of certain files, do not include them in @code{CFLAGS}.
245 Users expect to be able to specify @code{CFLAGS} freely themselves.
246 Instead, arrange to pass the necessary options to the C compiler
247 independently of @code{CFLAGS}, by writing them explicitly in the
248 compilation commands or by defining an implicit rule, like this:
249
250 @smallexample
251 CFLAGS = -g
252 ALL_CFLAGS = -I. $(CFLAGS)
253 .c.o:
254         $(CC) -c $(CPPFLAGS) $(ALL_CFLAGS) $<
255 @end smallexample
256
257 Do include the @samp{-g} option in @code{CFLAGS}, because that is not
258 @emph{required} for proper compilation.  You can consider it a default
259 that is only recommended.  If the package is set up so that it is
260 compiled with GCC by default, then you might as well include @samp{-O}
261 in the default value of @code{CFLAGS} as well.
262
263 Put @code{CFLAGS} last in the compilation command, after other variables
264 containing compiler options, so the user can use @code{CFLAGS} to
265 override the others.
266
267 @code{CFLAGS} should be used in every invocation of the C compiler,
268 both those which do compilation and those which do linking.
269
270 Every Makefile should define the variable @code{INSTALL}, which is the
271 basic command for installing a file into the system.
272
273 Every Makefile should also define the variables @code{INSTALL_PROGRAM}
274 and @code{INSTALL_DATA}.  (The default for @code{INSTALL_PROGRAM} should
275 be @code{$(INSTALL)}; the default for @code{INSTALL_DATA} should be
276 @code{$@{INSTALL@} -m 644}.)  Then it should use those variables as the
277 commands for actual installation, for executables and non-executables
278 respectively.  Minimal use of these variables is as follows:
279
280 @example
281 $(INSTALL_PROGRAM) foo $(bindir)/foo
282 $(INSTALL_DATA) libfoo.a $(libdir)/libfoo.a
283 @end example
284
285 However, it is preferable to support a @code{DESTDIR} prefix on the
286 target files, as explained in the next section.
287
288 It is acceptable, but not required, to install multiple files in one
289 command, with the final argument being a directory, as in:
290
291 @example
292 $(INSTALL_PROGRAM) foo bar baz $(bindir)
293 @end example
294
295
296 @node DESTDIR
297 @section @code{DESTDIR}: support for staged installs
298
299 @vindex DESTDIR
300 @cindex staged installs
301 @cindex installations, staged
302
303 @code{DESTDIR} is a variable prepended to each installed target file,
304 like this:
305
306 @example
307 $(INSTALL_PROGRAM) foo $(DESTDIR)$(bindir)/foo
308 $(INSTALL_DATA) libfoo.a $(DESTDIR)$(libdir)/libfoo.a
309 @end example
310
311 The @code{DESTDIR} variable is specified by the user on the @code{make}
312 command line as an absolute file name.  For example:
313
314 @example
315 make DESTDIR=/tmp/stage install
316 @end example
317
318 @noindent
319 @code{DESTDIR} should be supported only in the @code{install*} and
320 @code{uninstall*} targets, as those are the only targets where it is
321 useful.
322
323 If your installation step would normally install
324 @file{/usr/local/bin/foo} and @file{/usr/local/lib/libfoo.a}, then an
325 installation invoked as in the example above would install
326 @file{/tmp/stage/usr/local/bin/foo} and
327 @file{/tmp/stage/usr/local/lib/libfoo.a} instead.
328
329 Prepending the variable @code{DESTDIR} to each target in this way
330 provides for @dfn{staged installs}, where the installed files are not
331 placed directly into their expected location but are instead copied
332 into a temporary location (@code{DESTDIR}).  However, installed files
333 maintain their relative directory structure and any embedded file names
334 will not be modified.
335
336 You should not set the value of @code{DESTDIR} in your @file{Makefile}
337 at all; then the files are installed into their expected locations by
338 default.  Also, specifying @code{DESTDIR} should not change the
339 operation of the software in any way, so its value should not be
340 included in any file contents.
341
342 @code{DESTDIR} support is commonly used in package creation.  It is
343 also helpful to users who want to understand what a given package will
344 install where, and to allow users who don't normally have permissions
345 to install into protected areas to build and install before gaining
346 those permissions.  Finally, it can be useful with tools such as
347 @code{stow}, where code is installed in one place but made to appear
348 to be installed somewhere else using symbolic links or special mount
349 operations.  So, we strongly recommend GNU packages support
350 @code{DESTDIR}, though it is not an absolute requirement.
351
352
353 @node Directory Variables
354 @section Variables for Installation Directories
355
356 Installation directories should always be named by variables, so it is
357 easy to install in a nonstandard place.  The standard names for these
358 variables and the values they should have in GNU packages are
359 described below.  They are based on a standard file system layout;
360 variants of it are used in GNU/Linux and other modern operating
361 systems.
362
363 Installers are expected to override these values when calling
364 @command{make} (e.g., @kbd{make prefix=/usr install} or
365 @command{configure} (e.g., @kbd{configure --prefix=/usr}).  GNU
366 packages should not try to guess which value should be appropriate for
367 these variables on the system they are being installed onto: use the
368 default settings specified here so that all GNU packages behave
369 identically, allowing the installer to achieve any desired layout.
370
371 These first two variables set the root for the installation.  All the
372 other installation directories should be subdirectories of one of
373 these two, and nothing should be directly installed into these two
374 directories.
375
376 @table @code
377 @item prefix
378 @vindex prefix
379 A prefix used in constructing the default values of the variables listed
380 below.  The default value of @code{prefix} should be @file{/usr/local}.
381 When building the complete GNU system, the prefix will be empty and
382 @file{/usr} will be a symbolic link to @file{/}.
383 (If you are using Autoconf, write it as @samp{@@prefix@@}.)
384
385 Running @samp{make install} with a different value of @code{prefix} from
386 the one used to build the program should @emph{not} recompile the
387 program.
388
389 @item exec_prefix
390 @vindex exec_prefix
391 A prefix used in constructing the default values of some of the
392 variables listed below.  The default value of @code{exec_prefix} should
393 be @code{$(prefix)}.
394 (If you are using Autoconf, write it as @samp{@@exec_prefix@@}.)
395
396 Generally, @code{$(exec_prefix)} is used for directories that contain
397 machine-specific files (such as executables and subroutine libraries),
398 while @code{$(prefix)} is used directly for other directories.
399
400 Running @samp{make install} with a different value of @code{exec_prefix}
401 from the one used to build the program should @emph{not} recompile the
402 program.
403 @end table
404
405 Executable programs are installed in one of the following directories.
406
407 @table @code
408 @item bindir
409 @vindex bindir
410 The directory for installing executable programs that users can run.
411 This should normally be @file{/usr/local/bin}, but write it as
412 @file{$(exec_prefix)/bin}.
413 (If you are using Autoconf, write it as @samp{@@bindir@@}.)
414
415 @item sbindir
416 @vindex sbindir
417 The directory for installing executable programs that can be run from
418 the shell, but are only generally useful to system administrators.  This
419 should normally be @file{/usr/local/sbin}, but write it as
420 @file{$(exec_prefix)/sbin}.
421 (If you are using Autoconf, write it as @samp{@@sbindir@@}.)
422
423 @item libexecdir
424 @vindex libexecdir
425 @comment This paragraph adjusted to avoid overfull hbox --roland 5jul94
426 The directory for installing executable programs to be run by other
427 programs rather than by users.  This directory should normally be
428 @file{/usr/local/libexec}, but write it as @file{$(exec_prefix)/libexec}.
429 (If you are using Autoconf, write it as @samp{@@libexecdir@@}.)
430
431 The definition of @samp{libexecdir} is the same for all packages, so
432 you should install your data in a subdirectory thereof.  Most packages
433 install their data under @file{$(libexecdir)/@var{package-name}/},
434 possibly within additional subdirectories thereof, such as
435 @file{$(libexecdir)/@var{package-name}/@var{machine}/@var{version}}.
436 @end table
437
438 Data files used by the program during its execution are divided into
439 categories in two ways.
440
441 @itemize @bullet
442 @item
443 Some files are normally modified by programs; others are never normally
444 modified (though users may edit some of these).
445
446 @item
447 Some files are architecture-independent and can be shared by all
448 machines at a site; some are architecture-dependent and can be shared
449 only by machines of the same kind and operating system; others may never
450 be shared between two machines.
451 @end itemize
452
453 This makes for six different possibilities.  However, we want to
454 discourage the use of architecture-dependent files, aside from object
455 files and libraries.  It is much cleaner to make other data files
456 architecture-independent, and it is generally not hard.
457
458 Here are the variables Makefiles should use to specify directories
459 to put these various kinds of files in:
460
461 @table @samp
462 @item datarootdir
463 The root of the directory tree for read-only architecture-independent
464 data files.  This should normally be @file{/usr/local/share}, but
465 write it as @file{$(prefix)/share}.  (If you are using Autoconf, write
466 it as @samp{@@datarootdir@@}.)  @samp{datadir}'s default value is
467 based on this variable; so are @samp{infodir}, @samp{mandir}, and
468 others.
469
470 @item datadir
471 The directory for installing idiosyncratic read-only
472 architecture-independent data files for this program.  This is usually
473 the same place as @samp{datarootdir}, but we use the two separate
474 variables so that you can move these program-specific files without
475 altering the location for Info files, man pages, etc.
476
477 This should normally be @file{/usr/local/share}, but write it as
478 @file{$(datarootdir)}.  (If you are using Autoconf, write it as
479 @samp{@@datadir@@}.)
480
481 The definition of @samp{datadir} is the same for all packages, so you
482 should install your data in a subdirectory thereof.  Most packages
483 install their data under @file{$(datadir)/@var{package-name}/}.
484
485 @item sysconfdir
486 The directory for installing read-only data files that pertain to a
487 single machine--that is to say, files for configuring a host.  Mailer
488 and network configuration files, @file{/etc/passwd}, and so forth belong
489 here.  All the files in this directory should be ordinary ASCII text
490 files.  This directory should normally be @file{/usr/local/etc}, but
491 write it as @file{$(prefix)/etc}.
492 (If you are using Autoconf, write it as @samp{@@sysconfdir@@}.)
493
494 Do not install executables here in this directory (they probably belong
495 in @file{$(libexecdir)} or @file{$(sbindir)}).  Also do not install
496 files that are modified in the normal course of their use (programs
497 whose purpose is to change the configuration of the system excluded).
498 Those probably belong in @file{$(localstatedir)}.
499
500 @item sharedstatedir
501 The directory for installing architecture-independent data files which
502 the programs modify while they run.  This should normally be
503 @file{/usr/local/com}, but write it as @file{$(prefix)/com}.
504 (If you are using Autoconf, write it as @samp{@@sharedstatedir@@}.)
505
506 @item localstatedir
507 The directory for installing data files which the programs modify while
508 they run, and that pertain to one specific machine.  Users should never
509 need to modify files in this directory to configure the package's
510 operation; put such configuration information in separate files that go
511 in @file{$(datadir)} or @file{$(sysconfdir)}.  @file{$(localstatedir)}
512 should normally be @file{/usr/local/var}, but write it as
513 @file{$(prefix)/var}.
514 (If you are using Autoconf, write it as @samp{@@localstatedir@@}.)
515 @end table
516
517 These variables specify the directory for installing certain specific
518 types of files, if your program has them.  Every GNU package should
519 have Info files, so every program needs @samp{infodir}, but not all
520 need @samp{libdir} or @samp{lispdir}.
521
522 @table @samp
523 @item includedir
524 @c rewritten to avoid overfull hbox --roland
525 The directory for installing header files to be included by user
526 programs with the C @samp{#include} preprocessor directive.  This
527 should normally be @file{/usr/local/include}, but write it as
528 @file{$(prefix)/include}.
529 (If you are using Autoconf, write it as @samp{@@includedir@@}.)
530
531 Most compilers other than GCC do not look for header files in directory
532 @file{/usr/local/include}.  So installing the header files this way is
533 only useful with GCC.  Sometimes this is not a problem because some
534 libraries are only really intended to work with GCC.  But some libraries
535 are intended to work with other compilers.  They should install their
536 header files in two places, one specified by @code{includedir} and one
537 specified by @code{oldincludedir}.
538
539 @item oldincludedir
540 The directory for installing @samp{#include} header files for use with
541 compilers other than GCC.  This should normally be @file{/usr/include}.
542 (If you are using Autoconf, you can write it as @samp{@@oldincludedir@@}.)
543
544 The Makefile commands should check whether the value of
545 @code{oldincludedir} is empty.  If it is, they should not try to use
546 it; they should cancel the second installation of the header files.
547
548 A package should not replace an existing header in this directory unless
549 the header came from the same package.  Thus, if your Foo package
550 provides a header file @file{foo.h}, then it should install the header
551 file in the @code{oldincludedir} directory if either (1) there is no
552 @file{foo.h} there or (2) the @file{foo.h} that exists came from the Foo
553 package.
554
555 To tell whether @file{foo.h} came from the Foo package, put a magic
556 string in the file---part of a comment---and @code{grep} for that string.
557
558 @item docdir
559 The directory for installing documentation files (other than Info) for
560 this package.  By default, it should be
561 @file{/usr/local/share/doc/@var{yourpkg}}, but it should be written as
562 @file{$(datarootdir)/doc/@var{yourpkg}}.  (If you are using Autoconf,
563 write it as @samp{@@docdir@@}.)  The @var{yourpkg} subdirectory, which
564 may include a version number, prevents collisions among files with
565 common names, such as @file{README}.
566
567 @item infodir
568 The directory for installing the Info files for this package.  By
569 default, it should be @file{/usr/local/share/info}, but it should be
570 written as @file{$(datarootdir)/info}.  (If you are using Autoconf,
571 write it as @samp{@@infodir@@}.)  @code{infodir} is separate from
572 @code{docdir} for compatibility with existing practice.
573
574 @item htmldir
575 @itemx dvidir
576 @itemx pdfdir
577 @itemx psdir
578 Directories for installing documentation files in the particular
579 format.  They should all be set to @code{$(docdir)} by default.  (If
580 you are using Autoconf, write them as @samp{@@htmldir@@},
581 @samp{@@dvidir@@}, etc.)  Packages which supply several translations
582 of their documentation should install them in
583 @samp{$(htmldir)/}@var{ll}, @samp{$(pdfdir)/}@var{ll}, etc. where
584 @var{ll} is a locale abbreviation such as @samp{en} or @samp{pt_BR}.
585
586 @item libdir
587 The directory for object files and libraries of object code.  Do not
588 install executables here, they probably ought to go in @file{$(libexecdir)}
589 instead.  The value of @code{libdir} should normally be
590 @file{/usr/local/lib}, but write it as @file{$(exec_prefix)/lib}.
591 (If you are using Autoconf, write it as @samp{@@libdir@@}.)
592
593 @item lispdir
594 The directory for installing any Emacs Lisp files in this package.  By
595 default, it should be @file{/usr/local/share/emacs/site-lisp}, but it
596 should be written as @file{$(datarootdir)/emacs/site-lisp}.
597
598 If you are using Autoconf, write the default as @samp{@@lispdir@@}.
599 In order to make @samp{@@lispdir@@} work, you need the following lines
600 in your @file{configure.in} file:
601
602 @example
603 lispdir='$@{datarootdir@}/emacs/site-lisp'
604 AC_SUBST(lispdir)
605 @end example
606
607 @item localedir
608 The directory for installing locale-specific message catalogs for this
609 package.  By default, it should be @file{/usr/local/share/locale}, but
610 it should be written as @file{$(datarootdir)/locale}.  (If you are
611 using Autoconf, write it as @samp{@@localedir@@}.)  This directory
612 usually has a subdirectory per locale.
613 @end table
614
615 Unix-style man pages are installed in one of the following:
616
617 @table @samp
618 @item mandir
619 The top-level directory for installing the man pages (if any) for this
620 package.  It will normally be @file{/usr/local/share/man}, but you
621 should write it as @file{$(datarootdir)/man}.  (If you are using
622 Autoconf, write it as @samp{@@mandir@@}.)
623
624 @item man1dir
625 The directory for installing section 1 man pages.  Write it as
626 @file{$(mandir)/man1}.
627 @item man2dir
628 The directory for installing section 2 man pages.  Write it as
629 @file{$(mandir)/man2}
630 @item @dots{}
631
632 @strong{Don't make the primary documentation for any GNU software be a
633 man page.  Write a manual in Texinfo instead.  Man pages are just for
634 the sake of people running GNU software on Unix, which is a secondary
635 application only.}
636
637 @item manext
638 The file name extension for the installed man page.  This should contain
639 a period followed by the appropriate digit; it should normally be @samp{.1}.
640
641 @item man1ext
642 The file name extension for installed section 1 man pages.
643 @item man2ext
644 The file name extension for installed section 2 man pages.
645 @item @dots{}
646 Use these names instead of @samp{manext} if the package needs to install man
647 pages in more than one section of the manual.
648 @end table
649
650 And finally, you should set the following variable:
651
652 @table @samp
653 @item srcdir
654 The directory for the sources being compiled.  The value of this
655 variable is normally inserted by the @code{configure} shell script.
656 (If you are using Autoconf, use @samp{srcdir = @@srcdir@@}.)
657 @end table
658
659 For example:
660
661 @smallexample
662 @c I have changed some of the comments here slightly to fix an overfull
663 @c hbox, so the make manual can format correctly. --roland
664 # Common prefix for installation directories.
665 # NOTE: This directory must exist when you start the install.
666 prefix = /usr/local
667 datarootdir = $(prefix)/share
668 datadir = $(datarootdir)
669 exec_prefix = $(prefix)
670 # Where to put the executable for the command `gcc'.
671 bindir = $(exec_prefix)/bin
672 # Where to put the directories used by the compiler.
673 libexecdir = $(exec_prefix)/libexec
674 # Where to put the Info files.
675 infodir = $(datarootdir)/info
676 @end smallexample
677
678 If your program installs a large number of files into one of the
679 standard user-specified directories, it might be useful to group them
680 into a subdirectory particular to that program.  If you do this, you
681 should write the @code{install} rule to create these subdirectories.
682
683 Do not expect the user to include the subdirectory name in the value of
684 any of the variables listed above.  The idea of having a uniform set of
685 variable names for installation directories is to enable the user to
686 specify the exact same values for several different GNU packages.  In
687 order for this to be useful, all the packages must be designed so that
688 they will work sensibly when the user does so.
689
690 At times, not all of these variables may be implemented in the current
691 release of Autoconf and/or Automake; but as of Autoconf@tie{}2.60, we
692 believe all of them are.  When any are missing, the descriptions here
693 serve as specifications for what Autoconf will implement.  As a
694 programmer, you can either use a development version of Autoconf or
695 avoid using these variables until a stable release is made which
696 supports them.
697
698
699 @node Standard Targets
700 @section Standard Targets for Users
701
702 All GNU programs should have the following targets in their Makefiles:
703
704 @table @samp
705 @item all
706 Compile the entire program.  This should be the default target.  This
707 target need not rebuild any documentation files; Info files should
708 normally be included in the distribution, and DVI (and other
709 documentation format) files should be made only when explicitly asked
710 for.
711
712 By default, the Make rules should compile and link with @samp{-g}, so
713 that executable programs have debugging symbols.  Users who don't mind
714 being helpless can strip the executables later if they wish.
715
716 @item install
717 Compile the program and copy the executables, libraries, and so on to
718 the file names where they should reside for actual use.  If there is a
719 simple test to verify that a program is properly installed, this target
720 should run that test.
721
722 Do not strip executables when installing them.  Devil-may-care users can
723 use the @code{install-strip} target to do that.
724
725 If possible, write the @code{install} target rule so that it does not
726 modify anything in the directory where the program was built, provided
727 @samp{make all} has just been done.  This is convenient for building the
728 program under one user name and installing it under another.
729
730 The commands should create all the directories in which files are to be
731 installed, if they don't already exist.  This includes the directories
732 specified as the values of the variables @code{prefix} and
733 @code{exec_prefix}, as well as all subdirectories that are needed.
734 One way to do this is by means of an @code{installdirs} target
735 as described below.
736
737 Use @samp{-} before any command for installing a man page, so that
738 @code{make} will ignore any errors.  This is in case there are systems
739 that don't have the Unix man page documentation system installed.
740
741 The way to install Info files is to copy them into @file{$(infodir)}
742 with @code{$(INSTALL_DATA)} (@pxref{Command Variables}), and then run
743 the @code{install-info} program if it is present.  @code{install-info}
744 is a program that edits the Info @file{dir} file to add or update the
745 menu entry for the given Info file; it is part of the Texinfo package.
746 Here is a sample rule to install an Info file:
747
748 @comment This example has been carefully formatted for the Make manual.
749 @comment Please do not reformat it without talking to bug-make@gnu.org.
750 @smallexample
751 $(DESTDIR)$(infodir)/foo.info: foo.info
752         $(POST_INSTALL)
753 # There may be a newer info file in . than in srcdir.
754         -if test -f foo.info; then d=.; \
755          else d=$(srcdir); fi; \
756         $(INSTALL_DATA) $$d/foo.info $(DESTDIR)$@@; \
757 # Run install-info only if it exists.
758 # Use `if' instead of just prepending `-' to the
759 # line so we notice real errors from install-info.
760 # We use `$(SHELL) -c' because some shells do not
761 # fail gracefully when there is an unknown command.
762         if $(SHELL) -c 'install-info --version' \
763            >/dev/null 2>&1; then \
764           install-info --dir-file=$(DESTDIR)$(infodir)/dir \
765                        $(DESTDIR)$(infodir)/foo.info; \
766         else true; fi
767 @end smallexample
768
769 When writing the @code{install} target, you must classify all the
770 commands into three categories: normal ones, @dfn{pre-installation}
771 commands and @dfn{post-installation} commands.  @xref{Install Command
772 Categories}.
773
774 @item install-html
775 @itemx install-dvi
776 @itemx install-pdf
777 @itemx install-ps
778 These targets install documentation in formats other than Info;
779 they're intended to be called explicitly by the person installing the
780 package, if that format is desired.  GNU prefers Info files, so these
781 must be installed by the @code{install} target.
782
783 When you have many documentation files to install, we recommend that
784 you avoid collisions and clutter by arranging for these targets to
785 install in subdirectories of the appropriate installation directory,
786 such as @code{htmldir}.  As one example, if your package has multiple
787 manuals, and you wish to install HTML documentation with many files
788 (such as the ``split'' mode output by @code{makeinfo --html}), you'll
789 certainly want to use subdirectories, or two nodes with the same name
790 in different manuals will overwrite each other.
791
792 Please make these @code{install-@var{format}} targets invoke the
793 commands for the @var{format} target, for example, by making
794 @var{format} a dependency.
795
796 @item uninstall
797 Delete all the installed files---the copies that the @samp{install}
798 and @samp{install-*} targets create.
799
800 This rule should not modify the directories where compilation is done,
801 only the directories where files are installed.
802
803 The uninstallation commands are divided into three categories, just like
804 the installation commands.  @xref{Install Command Categories}.
805
806 @item install-strip
807 Like @code{install}, but strip the executable files while installing
808 them.  In simple cases, this target can use the @code{install} target in
809 a simple way:
810
811 @smallexample
812 install-strip:
813         $(MAKE) INSTALL_PROGRAM='$(INSTALL_PROGRAM) -s' \
814                 install
815 @end smallexample
816
817 But if the package installs scripts as well as real executables, the
818 @code{install-strip} target can't just refer to the @code{install}
819 target; it has to strip the executables but not the scripts.
820
821 @code{install-strip} should not strip the executables in the build
822 directory which are being copied for installation.  It should only strip
823 the copies that are installed.
824
825 Normally we do not recommend stripping an executable unless you are sure
826 the program has no bugs.  However, it can be reasonable to install a
827 stripped executable for actual execution while saving the unstripped
828 executable elsewhere in case there is a bug.
829
830 @comment The gratuitous blank line here is to make the table look better
831 @comment in the printed Make manual.  Please leave it in.
832 @item clean
833
834 Delete all files in the current directory that are normally created by
835 building the program.  Also delete files in other directories if they
836 are created by this makefile.  However, don't delete the files that
837 record the configuration.  Also preserve files that could be made by
838 building, but normally aren't because the distribution comes with
839 them.  There is no need to delete parent directories that were created
840 with @samp{mkdir -p}, since they could have existed anyway.
841
842 Delete @file{.dvi} files here if they are not part of the distribution.
843
844 @item distclean
845 Delete all files in the current directory (or created by this
846 makefile) that are created by configuring or building the program.  If
847 you have unpacked the source and built the program without creating
848 any other files, @samp{make distclean} should leave only the files
849 that were in the distribution.  However, there is no need to delete
850 parent directories that were created with @samp{mkdir -p}, since they
851 could have existed anyway.
852
853 @item mostlyclean
854 Like @samp{clean}, but may refrain from deleting a few files that people
855 normally don't want to recompile.  For example, the @samp{mostlyclean}
856 target for GCC does not delete @file{libgcc.a}, because recompiling it
857 is rarely necessary and takes a lot of time.
858
859 @item maintainer-clean
860 Delete almost everything that can be reconstructed with this Makefile.
861 This typically includes everything deleted by @code{distclean}, plus
862 more: C source files produced by Bison, tags tables, Info files, and
863 so on.
864
865 The reason we say ``almost everything'' is that running the command
866 @samp{make maintainer-clean} should not delete @file{configure} even
867 if @file{configure} can be remade using a rule in the Makefile.  More
868 generally, @samp{make maintainer-clean} should not delete anything
869 that needs to exist in order to run @file{configure} and then begin to
870 build the program.  Also, there is no need to delete parent
871 directories that were created with @samp{mkdir -p}, since they could
872 have existed anyway.  These are the only exceptions;
873 @code{maintainer-clean} should delete everything else that can be
874 rebuilt.
875
876 The @samp{maintainer-clean} target is intended to be used by a maintainer of
877 the package, not by ordinary users.  You may need special tools to
878 reconstruct some of the files that @samp{make maintainer-clean} deletes.
879 Since these files are normally included in the distribution, we don't
880 take care to make them easy to reconstruct.  If you find you need to
881 unpack the full distribution again, don't blame us.
882
883 To help make users aware of this, the commands for the special
884 @code{maintainer-clean} target should start with these two:
885
886 @smallexample
887 @@echo 'This command is intended for maintainers to use; it'
888 @@echo 'deletes files that may need special tools to rebuild.'
889 @end smallexample
890
891 @item TAGS
892 Update a tags table for this program.
893 @c ADR: how?
894
895 @item info
896 Generate any Info files needed.  The best way to write the rules is as
897 follows:
898
899 @smallexample
900 info: foo.info
901
902 foo.info: foo.texi chap1.texi chap2.texi
903         $(MAKEINFO) $(srcdir)/foo.texi
904 @end smallexample
905
906 @noindent
907 You must define the variable @code{MAKEINFO} in the Makefile.  It should
908 run the @code{makeinfo} program, which is part of the Texinfo
909 distribution.
910
911 Normally a GNU distribution comes with Info files, and that means the
912 Info files are present in the source directory.  Therefore, the Make
913 rule for an info file should update it in the source directory.  When
914 users build the package, ordinarily Make will not update the Info files
915 because they will already be up to date.
916
917 @item dvi
918 @itemx html
919 @itemx pdf
920 @itemx ps
921 Generate documentation files in the given format.  These targets
922 should always exist, but any or all can be a no-op if the given output
923 format cannot be generated.  These targets should not be dependencies
924 of the @code{all} target; the user must manually invoke them.
925
926 Here's an example rule for generating DVI files from Texinfo:
927
928 @smallexample
929 dvi: foo.dvi
930
931 foo.dvi: foo.texi chap1.texi chap2.texi
932         $(TEXI2DVI) $(srcdir)/foo.texi
933 @end smallexample
934
935 @noindent
936 You must define the variable @code{TEXI2DVI} in the Makefile.  It should
937 run the program @code{texi2dvi}, which is part of the Texinfo
938 distribution.@footnote{@code{texi2dvi} uses @TeX{} to do the real work
939 of formatting. @TeX{} is not distributed with Texinfo.}  Alternatively,
940 write just the dependencies, and allow GNU @code{make} to provide the command.
941
942 Here's another example, this one for generating HTML from Texinfo:
943
944 @smallexample
945 html: foo.html
946
947 foo.html: foo.texi chap1.texi chap2.texi
948         $(TEXI2HTML) $(srcdir)/foo.texi
949 @end smallexample
950
951 @noindent
952 Again, you would define the variable @code{TEXI2HTML} in the Makefile;
953 for example, it might run @code{makeinfo --no-split --html}
954 (@command{makeinfo} is part of the Texinfo distribution).
955
956 @item dist
957 Create a distribution tar file for this program.  The tar file should be
958 set up so that the file names in the tar file start with a subdirectory
959 name which is the name of the package it is a distribution for.  This
960 name can include the version number.
961
962 For example, the distribution tar file of GCC version 1.40 unpacks into
963 a subdirectory named @file{gcc-1.40}.
964
965 The easiest way to do this is to create a subdirectory appropriately
966 named, use @code{ln} or @code{cp} to install the proper files in it, and
967 then @code{tar} that subdirectory.
968
969 Compress the tar file with @code{gzip}.  For example, the actual
970 distribution file for GCC version 1.40 is called @file{gcc-1.40.tar.gz}.
971 It is ok to support other free compression formats as well.
972
973 The @code{dist} target should explicitly depend on all non-source files
974 that are in the distribution, to make sure they are up to date in the
975 distribution.
976 @ifset CODESTD
977 @xref{Releases, , Making Releases}.
978 @end ifset
979 @ifclear CODESTD
980 @xref{Releases, , Making Releases, standards, GNU Coding Standards}.
981 @end ifclear
982
983 @item check
984 Perform self-tests (if any).  The user must build the program before
985 running the tests, but need not install the program; you should write
986 the self-tests so that they work when the program is built but not
987 installed.
988 @end table
989
990 The following targets are suggested as conventional names, for programs
991 in which they are useful.
992
993 @table @code
994 @item installcheck
995 Perform installation tests (if any).  The user must build and install
996 the program before running the tests.  You should not assume that
997 @file{$(bindir)} is in the search path.
998
999 @item installdirs
1000 It's useful to add a target named @samp{installdirs} to create the
1001 directories where files are installed, and their parent directories.
1002 There is a script called @file{mkinstalldirs} which is convenient for
1003 this; you can find it in the Texinfo package.
1004 @c It's in /gd/gnu/lib/mkinstalldirs.
1005 You can use a rule like this:
1006
1007 @comment This has been carefully formatted to look decent in the Make manual.
1008 @comment Please be sure not to make it extend any further to the right.--roland
1009 @smallexample
1010 # Make sure all installation directories (e.g. $(bindir))
1011 # actually exist by making them if necessary.
1012 installdirs: mkinstalldirs
1013         $(srcdir)/mkinstalldirs $(bindir) $(datadir) \
1014                                 $(libdir) $(infodir) \
1015                                 $(mandir)
1016 @end smallexample
1017
1018 @noindent
1019 or, if you wish to support @env{DESTDIR},
1020
1021 @smallexample
1022 # Make sure all installation directories (e.g. $(bindir))
1023 # actually exist by making them if necessary.
1024 installdirs: mkinstalldirs
1025         $(srcdir)/mkinstalldirs \
1026             $(DESTDIR)$(bindir) $(DESTDIR)$(datadir) \
1027             $(DESTDIR)$(libdir) $(DESTDIR)$(infodir) \
1028             $(DESTDIR)$(mandir)
1029 @end smallexample
1030
1031 This rule should not modify the directories where compilation is done.
1032 It should do nothing but create installation directories.
1033 @end table
1034
1035 @node Install Command Categories
1036 @section Install Command Categories
1037
1038 @cindex pre-installation commands
1039 @cindex post-installation commands
1040 When writing the @code{install} target, you must classify all the
1041 commands into three categories: normal ones, @dfn{pre-installation}
1042 commands and @dfn{post-installation} commands.
1043
1044 Normal commands move files into their proper places, and set their
1045 modes.  They may not alter any files except the ones that come entirely
1046 from the package they belong to.
1047
1048 Pre-installation and post-installation commands may alter other files;
1049 in particular, they can edit global configuration files or data bases.
1050
1051 Pre-installation commands are typically executed before the normal
1052 commands, and post-installation commands are typically run after the
1053 normal commands.
1054
1055 The most common use for a post-installation command is to run
1056 @code{install-info}.  This cannot be done with a normal command, since
1057 it alters a file (the Info directory) which does not come entirely and
1058 solely from the package being installed.  It is a post-installation
1059 command because it needs to be done after the normal command which
1060 installs the package's Info files.
1061
1062 Most programs don't need any pre-installation commands, but we have the
1063 feature just in case it is needed.
1064
1065 To classify the commands in the @code{install} rule into these three
1066 categories, insert @dfn{category lines} among them.  A category line
1067 specifies the category for the commands that follow.
1068
1069 A category line consists of a tab and a reference to a special Make
1070 variable, plus an optional comment at the end.  There are three
1071 variables you can use, one for each category; the variable name
1072 specifies the category.  Category lines are no-ops in ordinary execution
1073 because these three Make variables are normally undefined (and you
1074 @emph{should not} define them in the makefile).
1075
1076 Here are the three possible category lines, each with a comment that
1077 explains what it means:
1078
1079 @smallexample
1080         $(PRE_INSTALL)     # @r{Pre-install commands follow.}
1081         $(POST_INSTALL)    # @r{Post-install commands follow.}
1082         $(NORMAL_INSTALL)  # @r{Normal commands follow.}
1083 @end smallexample
1084
1085 If you don't use a category line at the beginning of the @code{install}
1086 rule, all the commands are classified as normal until the first category
1087 line.  If you don't use any category lines, all the commands are
1088 classified as normal.
1089
1090 These are the category lines for @code{uninstall}:
1091
1092 @smallexample
1093         $(PRE_UNINSTALL)     # @r{Pre-uninstall commands follow.}
1094         $(POST_UNINSTALL)    # @r{Post-uninstall commands follow.}
1095         $(NORMAL_UNINSTALL)  # @r{Normal commands follow.}
1096 @end smallexample
1097
1098 Typically, a pre-uninstall command would be used for deleting entries
1099 from the Info directory.
1100
1101 If the @code{install} or @code{uninstall} target has any dependencies
1102 which act as subroutines of installation, then you should start
1103 @emph{each} dependency's commands with a category line, and start the
1104 main target's commands with a category line also.  This way, you can
1105 ensure that each command is placed in the right category regardless of
1106 which of the dependencies actually run.
1107
1108 Pre-installation and post-installation commands should not run any
1109 programs except for these:
1110
1111 @example
1112 [ basename bash cat chgrp chmod chown cmp cp dd diff echo
1113 egrep expand expr false fgrep find getopt grep gunzip gzip
1114 hostname install install-info kill ldconfig ln ls md5sum
1115 mkdir mkfifo mknod mv printenv pwd rm rmdir sed sort tee
1116 test touch true uname xargs yes
1117 @end example
1118
1119 @cindex binary packages
1120 The reason for distinguishing the commands in this way is for the sake
1121 of making binary packages.  Typically a binary package contains all the
1122 executables and other files that need to be installed, and has its own
1123 method of installing them---so it does not need to run the normal
1124 installation commands.  But installing the binary package does need to
1125 execute the pre-installation and post-installation commands.
1126
1127 Programs to build binary packages work by extracting the
1128 pre-installation and post-installation commands.  Here is one way of
1129 extracting the pre-installation commands (the @option{-s} option to
1130 @command{make} is needed to silence messages about entering
1131 subdirectories):
1132
1133 @smallexample
1134 make -s -n install -o all \
1135       PRE_INSTALL=pre-install \
1136       POST_INSTALL=post-install \
1137       NORMAL_INSTALL=normal-install \
1138   | gawk -f pre-install.awk
1139 @end smallexample
1140
1141 @noindent
1142 where the file @file{pre-install.awk} could contain this:
1143
1144 @smallexample
1145 $0 ~ /^(normal-install|post-install)[ \t]*$/ @{on = 0@}
1146 on @{print $0@}
1147 $0 ~ /^pre-install[ \t]*$/ @{on = 1@}
1148 @end smallexample