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.
15 * Utilities in Makefiles::
18 * Directory Variables::
22 @section General Conventions for Makefiles
24 Every Makefile should contain this line:
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
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:
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
56 The distinction between @file{./} and @file{$(srcdir)/} is important
57 when using the @samp{--srcdir} option to @file{configure}. A rule of
61 foo.1 : foo.man sedscript
62 sed -e sedscript foo.man > foo.1
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
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
78 $(CC) -I. -I$(srcdir) $(CFLAGS) -c bar.c -o foo.o
82 should instead be written as
86 $(CC) -I. -I$(srcdir) $(CFLAGS) -c $< -o $@@
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:
96 foo.1 : foo.man sedscript
97 sed -e $(srcdir)/sedscript $(srcdir)/foo.man > $@@
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:
111 cat cmp cp echo egrep expr grep
112 ln mkdir mv pwd rm rmdir sed test touch
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
125 ar bison cc flex install ld lex
126 make makeinfo ranlib texi2dvi yacc
129 Use the following @code{make} variables:
132 $(AR) $(BISON) $(CC) $(FLEX) $(INSTALL) $(LD) $(LEX)
133 $(MAKE) $(MAKEINFO) $(RANLIB) $(TEXI2DVI) $(YACC)
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
148 @node Standard Targets
149 @section Standard Targets for Users
151 All GNU programs should have the following targets in their Makefiles:
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.
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
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.
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; \
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
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.
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.
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.
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.
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.
244 Update a tags table for this program.
247 Generate any Info files needed. The best way to write the rules is as
253 foo.info: foo.texi chap1.texi chap2.texi
254 $(MAKEINFO) $(srcdir)/foo.texi
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
263 Generate DVI files for all TeXinfo documentation.
269 foo.dvi: foo.texi chap1.texi chap2.texi
270 $(TEXI2DVI) $(srcdir)/foo.texi
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.
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
295 @xref{Releases, , Making Releases, standards, GNU Coding Standards}.
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
304 The following targets are suggested as conventional names, for programs
305 in which they are useful.
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.
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
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) \
332 @node Command Variables
333 @section Variables for Specifying Commands
335 Makefiles should provide variables for overriding certain commands, options,
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:
365 ALL_CFLAGS = -I. $(CFLAGS)
367 $(CC) -c $(CPPFLAGS) $(ALL_CFLAGS) $<
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
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:
390 $(INSTALL_PROGRAM) foo $(bindir)/foo
391 $(INSTALL_DATA) libfoo.a $(libdir)/libfoo.a
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
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 described below. They are based on a standard filesystem
405 layout; variants of it are used in SVR4, 4.4BSD, Linux, Ultrix v4, and
406 other modern operating systems.
408 These two variables set the root for the installation. All the other
409 installation directories should be subdirectories of one of these two,
410 and nothing should be directly installed into these two directories.
414 A prefix used in constructing the default values of the variables listed
415 below. The default value of @code{prefix} should be @file{/usr/local}
416 When building the complete GNU system, the prefix will be empty and
417 @file{/usr} will be a symbolic link to @file{/}.
420 A prefix used in constructing the default values of some of the
421 variables listed below. The default value of @code{exec_prefix} should
424 Generally, @code{$(exec_prefix)} is used for directories that contain
425 machine-specific files (such as executables and subroutine libraries),
426 while @code{$(prefix)} is used directly for other directories.
429 Executable programs are installed in one of the following directories.
433 The directory for installing executable programs that users can run.
434 This should normally be @file{/usr/local/bin}, but write it as
435 @file{$(exec_prefix)/bin}.
438 The directory for installing executable programs that can be run from
439 the shell, but are only generally useful to system administrators. This
440 should normally be @file{/usr/local/sbin}, but write it as
441 @file{$(exec_prefix)/sbin}.
444 @comment This paragraph adjusted to avoid overfull hbox --roland 5jul94
445 The directory for installing executable programs to be run by other
446 programs rather than by users. This directory should normally be
447 @file{/usr/local/libexec}, but write it as @file{$(exec_prefix)/libexec}.
450 Data files used by the program during its execution are divided into
451 categories in two ways.
455 Some files are normally modified by programs; others are never normally
456 modified (though users may edit some of these).
459 Some files are architecture-independent and can be shared by all
460 machines at a site; some are architecture-dependent and can be shared
461 only by machines of the same kind and operating system; others may never
462 be shared between two machines.
465 This makes for six different possibilities. However, we want to
466 discourage the use of architecture-dependent files, aside from of object
467 files and libraries. It is much cleaner to make other data files
468 architecture-independent, and it is generally not hard.
470 Therefore, here are the variables makefiles should use to specify
475 The directory for installing read-only architecture independent data
476 files. This should normally be @file{/usr/local/share}, but write it as
477 @file{$(prefix)/share}. As a special exception, see @file{$(infodir)}
478 and @file{$(includedir)} below.
481 The directory for installing read-only data files that pertain to a
482 single machine--that is to say, files for configuring a host. Mailer
483 and network configuration files, @file{/etc/passwd}, and so forth belong
484 here. All the files in this directory should be ordinary ASCII text
485 files. This directory should normally be @file{/usr/local/etc}, but
486 write it as @file{$(prefix)/etc}.
488 @c rewritten to avoid overfull hbox --tower
489 Do not install executables
491 in this directory (they probably
492 belong in @file{$(libexecdir)} or @file{$(sbindir))}. Also do not
493 install files that are modified in the normal course of their use
494 (programs whose purpose is to change the configuration of the system
495 excluded). Those probably belong in @file{$(localstatedir)}.
498 The directory for installing architecture-independent data files which
499 the programs modify while they run. This should normally be
500 @file{/usr/local/com}, but write it as @file{$(prefix)/com}.
503 The directory for installing data files which the programs modify while
504 they run, and that pertain to one specific machine. Users should never
505 need to modify files in this directory to configure the package's
506 operation; put such configuration information in separate files that go
507 in @file{datadir} or @file{$(sysconfdir)}. @file{$(localstatedir)}
508 should normally be @file{/usr/local/var}, but write it as
509 @file{$(prefix)/var}.
512 The directory for object files and libraries of object code. Do not
513 install executables here, they probably belong in @file{$(libexecdir)}
514 instead. The value of @code{libdir} should normally be
515 @file{/usr/local/lib}, but write it as @file{$(exec_prefix)/lib}.
518 The directory for installing the Info files for this package. By
519 default, it should be @file{/usr/local/info}, but it should be written
520 as @file{$(prefix)/info}.
523 @c rewritten to avoid overfull hbox --roland
524 The directory for installing header files to be included by user
525 programs with the C @samp{#include} preprocessor directive. This
526 should normally be @file{/usr/local/include}, but write it as
527 @file{$(prefix)/include}.
529 Most compilers other than GCC do not look for header files in
530 @file{/usr/local/include}. So installing the header files this way is
531 only useful with GCC. Sometimes this is not a problem because some
532 libraries are only really intended to work with GCC. But some libraries
533 are intended to work with other compilers. They should install their
534 header files in two places, one specified by @code{includedir} and one
535 specified by @code{oldincludedir}.
538 The directory for installing @samp{#include} header files for use with
539 compilers other than GCC. This should normally be @file{/usr/include}.
541 The Makefile commands should check whether the value of
542 @code{oldincludedir} is empty. If it is, they should not try to use
543 it; they should cancel the second installation of the header files.
545 A package should not replace an existing header in this directory unless
546 the header came from the same package. Thus, if your Foo package
547 provides a header file @file{foo.h}, then it should install the header
548 file in the @code{oldincludedir} directory if either (1) there is no
549 @file{foo.h} there or (2) the @file{foo.h} that exists came from the Foo
552 To tell whether @file{foo.h} came from the Foo package, put a magic
553 string in the file---part of a comment---and grep for that string.
556 Unix-style man pages are installed in one of the following:
560 The directory for installing the man pages (if any) for this package.
561 It should include the suffix for the proper section of the
562 manual---usually @samp{1} for a utility. It will normally be
563 @file{/usr/local/man/man1}, but you should write it as
564 @file{$(prefix)/man/man1}.
567 The directory for installing section 1 man pages.
569 The directory for installing section 2 man pages.
571 Use these names instead of @samp{mandir} if the package needs to install man
572 pages in more than one section of the manual.
574 @strong{Don't make the primary documentation for any GNU software be a
575 man page. Write a manual in Texinfo instead. Man pages are just for
576 the sake of people running GNU software on Unix, which is a secondary
580 The file name extension for the installed man page. This should contain
581 a period followed by the appropriate digit; it should normally be @samp{.1}.
584 The file name extension for installed section 1 man pages.
586 The file name extension for installed section 2 man pages.
588 Use these names instead of @samp{manext} if the package needs to install man
589 pages in more than one section of the manual.
592 And finally, you should set the following variable:
596 The directory for the sources being compiled. The value of this
597 variable is normally inserted by the @code{configure} shell script.
603 @c I have changed some of the comments here slightly to fix an overfull
604 @c hbox, so the make manual can format correctly. --roland
605 # Common prefix for installation directories.
606 # NOTE: This directory must exist when you start the install.
608 exec_prefix = $(prefix)
609 # Where to put the executable for the command `gcc'.
610 bindir = $(exec_prefix)/bin
611 # Where to put the directories used by the compiler.
612 libexecdir = $(exec_prefix)/libexec
613 # Where to put the Info files.
614 infodir = $(prefix)/info
617 If your program installs a large number of files into one of the
618 standard user-specified directories, it might be useful to group them
619 into a subdirectory particular to that program. If you do this, you
620 should write the @code{install} rule to create these subdirectories.
622 Do not expect the user to include the subdirectory name in the value of
623 any of the variables listed above. The idea of having a uniform set of
624 variable names for installation directories is to enable the user to
625 specify the exact same values for several different GNU packages. In
626 order for this to be useful, all the packages must be designed so that
627 they will work sensibly when the user does so.