Sun Jul 28 15:37:09 1996 Rob Tulloh (tulloh@tivoli.com)
[make.git] / make-stds.texi
blob4862b5f677a1c04cf815dd93487ad15ce7f4907a
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
12 @ifinfo
13 node
14 @end ifinfo
15 @iftex
16 @ifset CODESTD
17 section
18 @end ifset
19 @ifclear CODESTD
20 chapter
21 @end ifclear
22 @end iftex
23 describes conventions for writing the Makefiles for GNU programs.
25 @menu
26 * Makefile Basics::             General Conventions for Makefiles
27 * Utilities in Makefiles::      Utilities in Makefiles
28 * Command Variables::           Variables for Specifying Commands
29 * Directory Variables::         Variables for Installation Directories
30 * Standard Targets::            Standard Targets for Users
31 @end menu
33 @node Makefile Basics
34 @section General Conventions for Makefiles
36 Every Makefile should contain this line:
38 @example
39 SHELL = /bin/sh
40 @end example
42 @noindent
43 to avoid trouble on systems where the @code{SHELL} variable might be
44 inherited from the environment.  (This is never a problem with GNU
45 @code{make}.)
47 Different @code{make} programs have incompatible suffix lists and
48 implicit rules, and this sometimes creates confusion or misbehavior.  So
49 it is a good idea to set the suffix list explicitly using only the
50 suffixes you need in the particular Makefile, like this:
52 @example
53 .SUFFIXES:
54 .SUFFIXES: .c .o
55 @end example
57 @noindent
58 The first line clears out the suffix list, the second introduces all
59 suffixes which may be subject to implicit rules in this Makefile.
61 Don't assume that @file{.} is in the path for command execution.  When
62 you need to run programs that are a part of your package during the
63 make, please make sure that it uses @file{./} if the program is built as
64 part of the make or @file{$(srcdir)/} if the file is an unchanging part
65 of the source code.  Without one of these prefixes, the current search
66 path is used.
68 The distinction between @file{./} and @file{$(srcdir)/} is important
69 when using the @samp{--srcdir} option to @file{configure}.  A rule of
70 the form:
72 @smallexample
73 foo.1 : foo.man sedscript
74         sed -e sedscript foo.man > foo.1
75 @end smallexample
77 @noindent
78 will fail when the current directory is not the source directory,
79 because @file{foo.man} and @file{sedscript} are not in the current
80 directory.
82 When using GNU @code{make}, relying on @samp{VPATH} to find the source
83 file will work in the case where there is a single dependency file,
84 since the @code{make} automatic variable @samp{$<} will represent the
85 source file wherever it is.  (Many versions of @code{make} set @samp{$<}
86 only in implicit rules.)  A Makefile target like
88 @smallexample
89 foo.o : bar.c
90         $(CC) -I. -I$(srcdir) $(CFLAGS) -c bar.c -o foo.o
91 @end smallexample
93 @noindent
94 should instead be written as
96 @smallexample
97 foo.o : bar.c
98         $(CC) -I. -I$(srcdir) $(CFLAGS) -c $< -o $@@
99 @end smallexample
101 @noindent
102 in order to allow @samp{VPATH} to work correctly.  When the target has
103 multiple dependencies, using an explicit @samp{$(srcdir)} is the easiest
104 way to make the rule work well.  For example, the target above for
105 @file{foo.1} is best written as:
107 @smallexample
108 foo.1 : foo.man sedscript
109         sed -e $(srcdir)/sedscript $(srcdir)/foo.man > $@@
110 @end smallexample
112 Try to make the build and installation targets, at least (and all their
113 subtargets) work correctly with a parallel @code{make}.
115 @node Utilities in Makefiles
116 @section Utilities in Makefiles
118 Write the Makefile commands (and any shell scripts, such as
119 @code{configure}) to run in @code{sh}, not in @code{csh}.  Don't use any
120 special features of @code{ksh} or @code{bash}.
122 The @code{configure} script and the Makefile rules for building and
123 installation should not use any utilities directly except these:
125 @example
126 cat cmp cp echo egrep expr false grep
127 ln mkdir mv pwd rm rmdir sed test touch true
128 @end example
130 Stick to the generally supported options for these programs.  For
131 example, don't use @samp{mkdir -p}, convenient as it may be, because
132 most systems don't support it.
134 It is a good idea to avoid creating symbolic links in makefiles, since a
135 few systems don't support them.
137 The Makefile rules for building and installation can also use compilers
138 and related programs, but should do so via @code{make} variables so that the
139 user can substitute alternatives.  Here are some of the programs we
140 mean:
142 @example
143 ar bison cc flex install ld lex
144 make makeinfo ranlib texi2dvi yacc
145 @end example
147 Use the following @code{make} variables:
149 @example
150 $(AR) $(BISON) $(CC) $(FLEX) $(INSTALL) $(LD) $(LEX)
151 $(MAKE) $(MAKEINFO) $(RANLIB) $(TEXI2DVI) $(YACC)
152 @end example
154 When you use @code{ranlib}, you should make sure nothing bad happens if
155 the system does not have @code{ranlib}.  Arrange to ignore an error
156 from that command, and print a message before the command to tell the
157 user that failure of the @code{ranlib} command does not mean a problem.
158 (The Autoconf @samp{AC_PROG_RANLIB} macro can help with this.)
160 If you use symbolic links, you should implement a fallback for systems
161 that don't have symbolic links.
163 It is ok to use other utilities in Makefile portions (or scripts)
164 intended only for particular systems where you know those utilities
165 exist.
167 @node Command Variables
168 @section Variables for Specifying Commands
170 Makefiles should provide variables for overriding certain commands, options,
171 and so on.
173 In particular, you should run most utility programs via variables.
174 Thus, if you use Bison, have a variable named @code{BISON} whose default
175 value is set with @samp{BISON = bison}, and refer to it with
176 @code{$(BISON)} whenever you need to use Bison.
178 File management utilities such as @code{ln}, @code{rm}, @code{mv}, and
179 so on, need not be referred to through variables in this way, since users
180 don't need to replace them with other programs.
182 Each program-name variable should come with an options variable that is
183 used to supply options to the program.  Append @samp{FLAGS} to the
184 program-name variable name to get the options variable name---for
185 example, @code{BISONFLAGS}.  (The name @code{CFLAGS} is an exception to
186 this rule, but we keep it because it is standard.)  Use @code{CPPFLAGS}
187 in any compilation command that runs the preprocessor, and use
188 @code{LDFLAGS} in any compilation command that does linking as well as
189 in any direct use of @code{ld}.
191 If there are C compiler options that @emph{must} be used for proper
192 compilation of certain files, do not include them in @code{CFLAGS}.
193 Users expect to be able to specify @code{CFLAGS} freely themselves.
194 Instead, arrange to pass the necessary options to the C compiler
195 independently of @code{CFLAGS}, by writing them explicitly in the
196 compilation commands or by defining an implicit rule, like this:
198 @smallexample
199 CFLAGS = -g
200 ALL_CFLAGS = -I. $(CFLAGS)
201 .c.o:
202         $(CC) -c $(CPPFLAGS) $(ALL_CFLAGS) $<
203 @end smallexample
205 Do include the @samp{-g} option in @code{CFLAGS}, because that is not
206 @emph{required} for proper compilation.  You can consider it a default
207 that is only recommended.  If the package is set up so that it is
208 compiled with GCC by default, then you might as well include @samp{-O}
209 in the default value of @code{CFLAGS} as well.
211 Put @code{CFLAGS} last in the compilation command, after other variables
212 containing compiler options, so the user can use @code{CFLAGS} to
213 override the others.
215 Every Makefile should define the variable @code{INSTALL}, which is the
216 basic command for installing a file into the system.
218 Every Makefile should also define the variables @code{INSTALL_PROGRAM}
219 and @code{INSTALL_DATA}.  (The default for each of these should be
220 @code{$(INSTALL)}.)  Then it should use those variables as the commands
221 for actual installation, for executables and nonexecutables
222 respectively.  Use these variables as follows:
224 @example
225 $(INSTALL_PROGRAM) foo $(bindir)/foo
226 $(INSTALL_DATA) libfoo.a $(libdir)/libfoo.a
227 @end example
229 @noindent
230 Always use a file name, not a directory name, as the second argument of
231 the installation commands.  Use a separate command for each file to be
232 installed.
234 @node Directory Variables
235 @section Variables for Installation Directories
237 Installation directories should always be named by variables, so it is
238 easy to install in a nonstandard place.  The standard names for these
239 variables are described below.  They are based on a standard filesystem
240 layout; variants of it are used in SVR4, 4.4BSD, Linux, Ultrix v4, and
241 other modern operating systems.
243 These two variables set the root for the installation.  All the other
244 installation directories should be subdirectories of one of these two,
245 and nothing should be directly installed into these two directories.
247 @table @samp
248 @item prefix
249 A prefix used in constructing the default values of the variables listed
250 below.  The default value of @code{prefix} should be @file{/usr/local}.
251 When building the complete GNU system, the prefix will be empty and
252 @file{/usr} will be a symbolic link to @file{/}.
253 (If you are using Autoconf, write it as @samp{@@prefix@@}.)
255 @item exec_prefix
256 A prefix used in constructing the default values of some of the
257 variables listed below.  The default value of @code{exec_prefix} should
258 be @code{$(prefix)}.
259 (If you are using Autoconf, write it as @samp{@@exec_prefix@@}.)
261 Generally, @code{$(exec_prefix)} is used for directories that contain
262 machine-specific files (such as executables and subroutine libraries),
263 while @code{$(prefix)} is used directly for other directories.
264 @end table
266 Executable programs are installed in one of the following directories.
268 @table @samp
269 @item bindir
270 The directory for installing executable programs that users can run.
271 This should normally be @file{/usr/local/bin}, but write it as
272 @file{$(exec_prefix)/bin}.
273 (If you are using Autoconf, write it as @samp{@@bindir@@}.)
275 @item sbindir
276 The directory for installing executable programs that can be run from
277 the shell, but are only generally useful to system administrators.  This
278 should normally be @file{/usr/local/sbin}, but write it as
279 @file{$(exec_prefix)/sbin}.
280 (If you are using Autoconf, write it as @samp{@@sbindir@@}.)
282 @item libexecdir
283 @comment This paragraph adjusted to avoid overfull hbox --roland 5jul94
284 The directory for installing executable programs to be run by other
285 programs rather than by users.  This directory should normally be
286 @file{/usr/local/libexec}, but write it as @file{$(exec_prefix)/libexec}.
287 (If you are using Autoconf, write it as @samp{@@libexecdir@@}.)
288 @end table
290 Data files used by the program during its execution are divided into
291 categories in two ways.
293 @itemize @bullet
294 @item
295 Some files are normally modified by programs; others are never normally
296 modified (though users may edit some of these).
298 @item
299 Some files are architecture-independent and can be shared by all
300 machines at a site; some are architecture-dependent and can be shared
301 only by machines of the same kind and operating system; others may never
302 be shared between two machines.
303 @end itemize
305 This makes for six different possibilities.  However, we want to
306 discourage the use of architecture-dependent files, aside from object
307 files and libraries.  It is much cleaner to make other data files
308 architecture-independent, and it is generally not hard.
310 Therefore, here are the variables Makefiles should use to specify
311 directories:
313 @table @samp
314 @item datadir
315 The directory for installing read-only architecture independent data
316 files.  This should normally be @file{/usr/local/share}, but write it as
317 @file{$(prefix)/share}.
318 (If you are using Autoconf, write it as @samp{@@datadir@@}.)
319 As a special exception, see @file{$(infodir)}
320 and @file{$(includedir)} below.
322 @item sysconfdir
323 The directory for installing read-only data files that pertain to a
324 single machine--that is to say, files for configuring a host.  Mailer
325 and network configuration files, @file{/etc/passwd}, and so forth belong
326 here.  All the files in this directory should be ordinary ASCII text
327 files.  This directory should normally be @file{/usr/local/etc}, but
328 write it as @file{$(prefix)/etc}.
329 (If you are using Autoconf, write it as @samp{@@sysconfdir@@}.)
331 @c rewritten to avoid overfull hbox --tower
332 Do not install executables
333 @c here
334 in this directory (they probably
335 belong in @file{$(libexecdir)} or @file{$(sbindir)}).  Also do not
336 install files that are modified in the normal course of their use
337 (programs whose purpose is to change the configuration of the system
338 excluded).  Those probably belong in @file{$(localstatedir)}.
340 @item sharedstatedir
341 The directory for installing architecture-independent data files which
342 the programs modify while they run.  This should normally be
343 @file{/usr/local/com}, but write it as @file{$(prefix)/com}.
344 (If you are using Autoconf, write it as @samp{@@sharedstatedir@@}.)
346 @item localstatedir
347 The directory for installing data files which the programs modify while
348 they run, and that pertain to one specific machine.  Users should never
349 need to modify files in this directory to configure the package's
350 operation; put such configuration information in separate files that go
351 in @file{$(datadir)} or @file{$(sysconfdir)}.  @file{$(localstatedir)}
352 should normally be @file{/usr/local/var}, but write it as
353 @file{$(prefix)/var}.
354 (If you are using Autoconf, write it as @samp{@@localstatedir@@}.)
356 @item libdir
357 The directory for object files and libraries of object code.  Do not
358 install executables here, they probably ought to go in @file{$(libexecdir)}
359 instead.  The value of @code{libdir} should normally be
360 @file{/usr/local/lib}, but write it as @file{$(exec_prefix)/lib}.
361 (If you are using Autoconf, write it as @samp{@@libdir@@}.)
363 @item infodir
364 The directory for installing the Info files for this package.  By
365 default, it should be @file{/usr/local/info}, but it should be written
366 as @file{$(prefix)/info}.
367 (If you are using Autoconf, write it as @samp{@@infodir@@}.)
369 @item lispdir
370 The directory for installing any Emacs Lisp files in this package.  By
371 default, it should be @file{/usr/local/share/emacs/site-lisp}, but it
372 should be written as @file{$(prefix)/share/emacs/site-lisp}.
374 If you are using Autoconf, write the default as @samp{@@lispdir@@}.
375 In order to make @samp{@@lispdir@@} work, you need the following lines
376 in your @file{configure.in} file:
378 @example
379 lispdir='$@{datadir@}/emacs/site-lisp'
380 AC_SUBST(lispdir)
381 @end example
383 @item includedir
384 @c rewritten to avoid overfull hbox --roland
385 The directory for installing header files to be included by user
386 programs with the C @samp{#include} preprocessor directive.  This
387 should normally be @file{/usr/local/include}, but write it as
388 @file{$(prefix)/include}.
389 (If you are using Autoconf, write it as @samp{@@includedir@@}.)
391 Most compilers other than GCC do not look for header files in
392 @file{/usr/local/include}.  So installing the header files this way is
393 only useful with GCC.  Sometimes this is not a problem because some
394 libraries are only really intended to work with GCC.  But some libraries
395 are intended to work with other compilers.  They should install their
396 header files in two places, one specified by @code{includedir} and one
397 specified by @code{oldincludedir}.
399 @item oldincludedir
400 The directory for installing @samp{#include} header files for use with
401 compilers other than GCC.  This should normally be @file{/usr/include}.
402 (If you are using Autoconf, you can write it as @samp{@@oldincludedir@@}.)
404 The Makefile commands should check whether the value of
405 @code{oldincludedir} is empty.  If it is, they should not try to use
406 it; they should cancel the second installation of the header files.
408 A package should not replace an existing header in this directory unless
409 the header came from the same package.  Thus, if your Foo package
410 provides a header file @file{foo.h}, then it should install the header
411 file in the @code{oldincludedir} directory if either (1) there is no
412 @file{foo.h} there or (2) the @file{foo.h} that exists came from the Foo
413 package.
415 To tell whether @file{foo.h} came from the Foo package, put a magic
416 string in the file---part of a comment---and @code{grep} for that string.
417 @end table
419 Unix-style man pages are installed in one of the following:
421 @table @samp
422 @item mandir
423 The top-level directory for installing the man pages (if any) for this
424 package.  It will normally be @file{/usr/local/man}, but you should
425 write it as @file{$(prefix)/man}.
426 (If you are using Autoconf, write it as @samp{@@mandir@@}.)
428 @item man1dir
429 The directory for installing section 1 man pages.  Write it as
430 @file{$(mandir)/man1}.
431 @item man2dir
432 The directory for installing section 2 man pages.  Write it as
433 @file{$(mandir)/man2}
434 @item @dots{}
436 @strong{Don't make the primary documentation for any GNU software be a
437 man page.  Write a manual in Texinfo instead.  Man pages are just for
438 the sake of people running GNU software on Unix, which is a secondary
439 application only.}
441 @item manext
442 The file name extension for the installed man page.  This should contain
443 a period followed by the appropriate digit; it should normally be @samp{.1}.
445 @item man1ext
446 The file name extension for installed section 1 man pages.
447 @item man2ext
448 The file name extension for installed section 2 man pages.
449 @item @dots{}
450 Use these names instead of @samp{manext} if the package needs to install man
451 pages in more than one section of the manual.
452 @end table
454 And finally, you should set the following variable:
456 @table @samp
457 @item srcdir
458 The directory for the sources being compiled.  The value of this
459 variable is normally inserted by the @code{configure} shell script.
460 (If you are using Autconf, use @samp{srcdir = @@srcdir@@}.)
461 @end table
463 For example:
465 @smallexample
466 @c I have changed some of the comments here slightly to fix an overfull
467 @c hbox, so the make manual can format correctly. --roland
468 # Common prefix for installation directories.
469 # NOTE: This directory must exist when you start the install.
470 prefix = /usr/local
471 exec_prefix = $(prefix)
472 # Where to put the executable for the command `gcc'.
473 bindir = $(exec_prefix)/bin
474 # Where to put the directories used by the compiler.
475 libexecdir = $(exec_prefix)/libexec
476 # Where to put the Info files.
477 infodir = $(prefix)/info
478 @end smallexample
480 If your program installs a large number of files into one of the
481 standard user-specified directories, it might be useful to group them
482 into a subdirectory particular to that program.  If you do this, you
483 should write the @code{install} rule to create these subdirectories.
485 Do not expect the user to include the subdirectory name in the value of
486 any of the variables listed above.  The idea of having a uniform set of
487 variable names for installation directories is to enable the user to
488 specify the exact same values for several different GNU packages.  In
489 order for this to be useful, all the packages must be designed so that
490 they will work sensibly when the user does so.
492 @node Standard Targets
493 @section Standard Targets for Users
495 All GNU programs should have the following targets in their Makefiles:
497 @table @samp
498 @item all
499 Compile the entire program.  This should be the default target.  This
500 target need not rebuild any documentation files; Info files should
501 normally be included in the distribution, and DVI files should be made
502 only when explicitly asked for.
504 By default, the Make rules should compile and link with @samp{-g}, so
505 that executable programs have debugging symbols.  Users who don't mind
506 being helpless can strip the executables later if they wish.
508 @item install
509 Compile the program and copy the executables, libraries, and so on to
510 the file names where they should reside for actual use.  If there is a
511 simple test to verify that a program is properly installed, this target
512 should run that test.
514 Do not strip executables when installing them.  Devil-may-care users can
515 use the @code{install-strip} target to do that.
517 If possible, write the @code{install} target rule so that it does not
518 modify anything in the directory where the program was built, provided
519 @samp{make all} has just been done.  This is convenient for building the
520 program under one user name and installing it under another.
522 The commands should create all the directories in which files are to be
523 installed, if they don't already exist.  This includes the directories
524 specified as the values of the variables @code{prefix} and
525 @code{exec_prefix}, as well as all subdirectories that are needed.
526 One way to do this is by means of an @code{installdirs} target
527 as described below.
529 Use @samp{-} before any command for installing a man page, so that
530 @code{make} will ignore any errors.  This is in case there are systems
531 that don't have the Unix man page documentation system installed.
533 The way to install Info files is to copy them into @file{$(infodir)}
534 with @code{$(INSTALL_DATA)} (@pxref{Command Variables}), and then run
535 the @code{install-info} program if it is present.  @code{install-info}
536 is a program that edits the Info @file{dir} file to add or update the
537 menu entry for the given Info file; it is part of the Texinfo package.
538 Here is a sample rule to install an Info file:
540 @comment This example has been carefully formatted for the Make manual.
541 @comment Please do not reformat it without talking to roland@gnu.ai.mit.edu.
542 @smallexample
543 $(infodir)/foo.info: foo.info
544 # There may be a newer info file in . than in srcdir.
545         -if test -f foo.info; then d=.; \
546          else d=$(srcdir); fi; \
547         $(INSTALL_DATA) $$d/foo.info $@@; \
548 # Run install-info only if it exists.
549 # Use `if' instead of just prepending `-' to the
550 # line so we notice real errors from install-info.
551 # We use `$(SHELL) -c' because some shells do not
552 # fail gracefully when there is an unknown command.
553         if $(SHELL) -c 'install-info --version' \
554            >/dev/null 2>&1; then \
555           install-info --dir-file=$(infodir)/dir \
556                        $(infodir)/foo.info; \
557         else true; fi
558 @end smallexample
560 @item uninstall
561 Delete all the installed files that the @samp{install} target would
562 create (but not the noninstalled files such as @samp{make all} would
563 create).
565 This rule should not modify the directories where compilation is done,
566 only the directories where files are installed.
568 @item install-strip
569 Like @code{install}, but strip the executable files while installing
570 them.  The definition of this target can be very simple:
572 @smallexample
573 install-strip:
574         $(MAKE) INSTALL_PROGRAM='$(INSTALL_PROGRAM) -s' \
575                 install
576 @end smallexample
578 Normally we do not recommend stripping an executable unless you are sure
579 the program has no bugs.  However, it can be reasonable to install a
580 stripped executable for actual execution while saving the unstripped
581 executable elsewhere in case there is a bug.
583 @comment The gratuitous blank line here is to make the table look better
584 @comment in the printed Make manual.  Please leave it in.
585 @item clean
587 Delete all files from the current directory that are normally created by
588 building the program.  Don't delete the files that record the
589 configuration.  Also preserve files that could be made by building, but
590 normally aren't because the distribution comes with them.
592 Delete @file{.dvi} files here if they are not part of the distribution.
594 @item distclean
595 Delete all files from the current directory that are created by
596 configuring or building the program.  If you have unpacked the source
597 and built the program without creating any other files, @samp{make
598 distclean} should leave only the files that were in the distribution.
600 @item mostlyclean
601 Like @samp{clean}, but may refrain from deleting a few files that people
602 normally don't want to recompile.  For example, the @samp{mostlyclean}
603 target for GCC does not delete @file{libgcc.a}, because recompiling it
604 is rarely necessary and takes a lot of time.
606 @item maintainer-clean
607 Delete almost everything from the current directory that can be
608 reconstructed with this Makefile.  This typically includes everything
609 deleted by @code{distclean}, plus more: C source files produced by
610 Bison, tags tables, Info files, and so on.
612 The reason we say ``almost everything'' is that running the command
613 @samp{make maintainer-clean} should not delete @file{configure} even if
614 @file{configure} can be remade using a rule in the Makefile.  More generally,
615 @samp{make maintainer-clean} should not delete anything that needs to
616 exist in order to run @file{configure} and then begin to build the
617 program.  This is the only exception; @code{maintainer-clean} should
618 delete everything else that can be rebuilt.
620 The @samp{maintainer-clean} target is intended to be used by a maintainer of
621 the package, not by ordinary users.  You may need special tools to
622 reconstruct some of the files that @samp{make maintainer-clean} deletes.
623 Since these files are normally included in the distribution, we don't
624 take care to make them easy to reconstruct.  If you find you need to
625 unpack the full distribution again, don't blame us.
627 To help make users aware of this, the commands for the special
628 @code{maintainer-clean} target should start with these two:
630 @smallexample
631 @@echo 'This command is intended for maintainers to use; it'
632 @@echo 'deletes files that may need special tools to rebuild.'
633 @end smallexample
635 @item TAGS
636 Update a tags table for this program.
637 @c ADR: how?
639 @item info
640 Generate any Info files needed.  The best way to write the rules is as
641 follows:
643 @smallexample
644 info: foo.info
646 foo.info: foo.texi chap1.texi chap2.texi
647         $(MAKEINFO) $(srcdir)/foo.texi
648 @end smallexample
650 @noindent
651 You must define the variable @code{MAKEINFO} in the Makefile.  It should
652 run the @code{makeinfo} program, which is part of the Texinfo
653 distribution.
655 @item dvi
656 Generate DVI files for all Texinfo documentation.
657 For example:
659 @smallexample
660 dvi: foo.dvi
662 foo.dvi: foo.texi chap1.texi chap2.texi
663         $(TEXI2DVI) $(srcdir)/foo.texi
664 @end smallexample
666 @noindent
667 You must define the variable @code{TEXI2DVI} in the Makefile.  It should
668 run the program @code{texi2dvi}, which is part of the Texinfo
669 distribution.@footnote{@code{texi2dvi} uses @TeX{} to do the real work
670 of formatting. @TeX{} is not distributed with Texinfo.}  Alternatively,
671 write just the dependencies, and allow GNU @code{make} to provide the command.
673 @item dist
674 Create a distribution tar file for this program.  The tar file should be
675 set up so that the file names in the tar file start with a subdirectory
676 name which is the name of the package it is a distribution for.  This
677 name can include the version number.
679 For example, the distribution tar file of GCC version 1.40 unpacks into
680 a subdirectory named @file{gcc-1.40}.
682 The easiest way to do this is to create a subdirectory appropriately
683 named, use @code{ln} or @code{cp} to install the proper files in it, and
684 then @code{tar} that subdirectory.
686 Compress the tar file file with @code{gzip}.  For example, the actual
687 distribution file for GCC version 1.40 is called @file{gcc-1.40.tar.gz}.
689 The @code{dist} target should explicitly depend on all non-source files
690 that are in the distribution, to make sure they are up to date in the
691 distribution.
692 @ifset CODESTD
693 @xref{Releases, , Making Releases}.
694 @end ifset
695 @ifclear CODESTD
696 @xref{Releases, , Making Releases, standards, GNU Coding Standards}.
697 @end ifclear
699 @item check
700 Perform self-tests (if any).  The user must build the program before
701 running the tests, but need not install the program; you should write
702 the self-tests so that they work when the program is built but not
703 installed.
704 @end table
706 The following targets are suggested as conventional names, for programs
707 in which they are useful.
709 @table @code
710 @item installcheck
711 Perform installation tests (if any).  The user must build and install
712 the program before running the tests.  You should not assume that
713 @file{$(bindir)} is in the search path.
715 @item installdirs
716 It's useful to add a target named @samp{installdirs} to create the
717 directories where files are installed, and their parent directories.
718 There is a script called @file{mkinstalldirs} which is convenient for
719 this; you can find it in the Texinfo package.
720 @c It's in /gd/gnu/lib/mkinstalldirs.
721 You can use a rule like this:
723 @comment This has been carefully formatted to look decent in the Make manual.
724 @comment Please be sure not to make it extend any further to the right.--roland
725 @smallexample
726 # Make sure all installation directories (e.g. $(bindir))
727 # actually exist by making them if necessary.
728 installdirs: mkinstalldirs
729         $(srcdir)/mkinstalldirs $(bindir) $(datadir) \
730                                 $(libdir) $(infodir) \
731                                 $(mandir)
732 @end smallexample
734 This rule should not modify the directories where compilation is done.
735 It should do nothing but create installation directories.
736 @end table