1 This is configure.info, produced by makeinfo version 4.0 from
4 INFO-DIR-SECTION GNU admin
6 * configure: (configure). The GNU configure and build system
9 This file documents the GNU configure and build system.
11 Copyright (C) 1998 Cygnus Solutions.
13 Permission is granted to make and distribute verbatim copies of this
14 manual provided the copyright notice and this permission notice are
15 preserved on all copies.
17 Permission is granted to copy and distribute modified versions of
18 this manual under the conditions for verbatim copying, provided that
19 the entire resulting derived work is distributed under the terms of a
20 permission notice identical to this one.
22 Permission is granted to copy and distribute translations of this
23 manual into another language, under the above conditions for modified
24 versions, except that this permission notice may be stated in a
25 translation approved by the Foundation.
28 File: configure.info, Node: Top, Next: Introduction, Up: (dir)
30 GNU configure and build system
31 ******************************
33 The GNU configure and build system.
37 * Introduction:: Introduction.
38 * Getting Started:: Getting Started.
40 * Configuration Names:: Configuration Names.
41 * Cross Compilation Tools:: Cross Compilation Tools.
42 * Canadian Cross:: Canadian Cross.
43 * Cygnus Configure:: Cygnus Configure.
44 * Multilibs:: Multilibs.
45 * FAQ:: Frequently Asked Questions.
49 File: configure.info, Node: Introduction, Next: Getting Started, Prev: Top, Up: Top
54 This document describes the GNU configure and build systems. It
55 describes how autoconf, automake, libtool, and make fit together. It
56 also includes a discussion of the older Cygnus configure system.
58 This document does not describe in detail how to use each of the
59 tools; see the respective manuals for that. Instead, it describes
60 which files the developer must write, which files are machine generated
61 and how they are generated, and where certain common problems should be
64 This document draws on several sources, including the autoconf
65 manual by David MacKenzie (*note autoconf overview: (autoconf)Top.),
66 the automake manual by David MacKenzie and Tom Tromey (*note automake
67 overview: (automake)Top.), the libtool manual by Gordon Matzigkeit
68 (*note libtool overview: (libtool)Top.), and the Cygnus configure
69 manual by K. Richard Pixley.
76 * Building:: Building.
79 File: configure.info, Node: Goals, Next: Tools, Up: Introduction
84 The GNU configure and build system has two main goals.
86 The first is to simplify the development of portable programs. The
87 system permits the developer to concentrate on writing the program,
88 simplifying many details of portability across Unix and even Windows
89 systems, and permitting the developer to describe how to build the
90 program using simple rules rather than complex Makefiles.
92 The second is to simplify the building of programs distributed as
93 source code. All programs are built using a simple, standardized, two
94 step process. The program builder need not install any special tools in
95 order to build the program.
98 File: configure.info, Node: Tools, Next: History, Prev: Goals, Up: Introduction
103 The GNU configure and build system is comprised of several different
104 tools. Program developers must build and install all of these tools.
106 People who just want to build programs from distributed sources
107 normally do not need any special tools beyond a Unix shell, a make
108 program, and a C compiler.
111 provides a general portability framework, based on testing the
112 features of the host system at build time.
115 a system for describing how to build a program, permitting the
116 developer to write a simplified `Makefile'.
119 a standardized approach to building shared libraries.
122 provides a framework for translation of text messages into other
123 languages; not really discussed in this document.
126 autoconf requires the GNU version of m4; the standard Unix m4 does
130 automake requires perl.
133 File: configure.info, Node: History, Next: Building, Prev: Tools, Up: Introduction
138 This is a very brief and probably inaccurate history.
140 As the number of Unix variants increased during the 1980s, it became
141 harder to write programs which could run on all variants. While it was
142 often possible to use `#ifdef' to identify particular systems,
143 developers frequently did not have access to every system, and the
144 characteristics of some systems changed from version to version.
146 By 1992, at least three different approaches had been developed:
147 * The Metaconfig program, by Larry Wall, Harlan Stenn, and Raphael
150 * The Cygnus configure script, by K. Richard Pixley, and the gcc
151 configure script, by Richard Stallman. These use essentially the
152 same approach, and the developers communicated regularly.
154 * The autoconf program, by David MacKenzie.
156 The Metaconfig program is still used for Perl and a few other
157 programs. It is part of the Dist package. I do not know if it is
160 In 1994, David MacKenzie and others modified autoconf to incorporate
161 all the features of Cygnus configure. Since then, there has been a
162 slow but steady conversion of GNU programs from Cygnus configure to
163 autoconf. gcc has been converted, eliminating the gcc configure script.
165 GNU autoconf was regularly maintained until late 1996. As of this
166 writing in June, 1998, it has no public maintainer.
168 Most programs are built using the make program, which requires the
169 developer to write Makefiles describing how to build the programs.
170 Since most programs are built in pretty much the same way, this led to a
173 The X Window system is built using the imake tool, which uses a
174 database of rules to eliminate the duplication. However, building a
175 tool which was developed using imake requires that the builder have
176 imake installed, violating one of the goals of the GNU system.
178 The new BSD make provides a standard library of Makefile fragments,
179 which permits developers to write very simple Makefiles. However, this
180 requires that the builder install the new BSD make program.
182 In 1994, David MacKenzie wrote the first version of automake, which
183 permitted writing a simple build description which was converted into a
184 Makefile which could be used by the standard make program. In 1995, Tom
185 Tromey completely rewrote automake in Perl, and he continues to enhance
188 Various free packages built libraries, and by around 1995 several
189 included support to build shared libraries on various platforms.
190 However, there was no consistent approach. In early 1996, Gordon
191 Matzigkeit began working on libtool, which provided a standardized
192 approach to building shared libraries. This was integrated into
193 automake from the start.
195 The development of automake and libtool was driven by the GNITS
196 project, a group of GNU maintainers who designed standardized tools to
197 help meet the GNU coding standards.
200 File: configure.info, Node: Building, Prev: History, Up: Introduction
205 Most readers of this document should already know how to build a
206 tool by running `configure' and `make'. This section may serve as a
207 quick introduction or reminder.
209 Building a tool is normally as simple as running `configure'
210 followed by `make'. You should normally run `configure' from an empty
211 directory, using some path to refer to the `configure' script in the
212 source directory. The directory in which you run `configure' is called
213 the "object directory".
215 In order to use a object directory which is different from the source
216 directory, you must be using the GNU version of `make', which has the
217 required `VPATH' support. Despite this restriction, using a different
218 object directory is highly recommended:
219 * It keeps the files generated during the build from cluttering up
222 * It permits you to remove the built files by simply removing the
223 entire build directory.
225 * It permits you to build from the same sources with several sets of
226 configure options simultaneously.
228 If you don't have GNU `make', you will have to run `configure' in
229 the source directory. All GNU packages should support this; in
230 particular, GNU packages should not assume the presence of GNU `make'.
232 After running `configure', you can build the tools by running `make'.
234 To install the tools, run `make install'. Installing the tools will
235 copy the programs and any required support files to the "installation
236 directory". The location of the installation directory is controlled
237 by `configure' options, as described below.
239 In the Cygnus tree at present, the info files are built and
240 installed as a separate step. To build them, run `make info'. To
241 install them, run `make install-info'.
243 All `configure' scripts support a wide variety of options. The most
244 interesting ones are `--with' and `--enable' options which are
245 generally specific to particular tools. You can usually use the
246 `--help' option to get a list of interesting options for a particular
249 The only generic options you are likely to use are the `--prefix'
250 and `--exec-prefix' options. These options are used to specify the
251 installation directory.
253 The directory named by the `--prefix' option will hold machine
254 independent files such as info files.
256 The directory named by the `--exec-prefix' option, which is normally
257 a subdirectory of the `--prefix' directory, will hold machine dependent
258 files such as executables.
260 The default for `--prefix' is `/usr/local'. The default for
261 `--exec-prefix' is the value used for `--prefix'.
263 The convention used in Cygnus releases is to use a `--prefix' option
264 of `/usr/cygnus/RELEASE', where RELEASE is the name of the release, and
265 to use a `--exec-prefix' option of `/usr/cygnus/RELEASE/H-HOST', where
266 HOST is the configuration name of the host system (*note Configuration
269 Do not use either the source or the object directory as the
270 installation directory. That will just lead to confusion.
273 File: configure.info, Node: Getting Started, Next: Files, Prev: Introduction, Up: Top
278 To start using the GNU configure and build system with your software
279 package, you must write three files, and you must run some tools to
280 manually generate additional files.
284 * Write configure.in:: Write configure.in.
285 * Write Makefile.am:: Write Makefile.am.
286 * Write acconfig.h:: Write acconfig.h.
287 * Generate files:: Generate files.
288 * Getting Started Example:: Example.
291 File: configure.info, Node: Write configure.in, Next: Write Makefile.am, Up: Getting Started
296 You must first write the file `configure.in'. This is an autoconf
297 input file, and the autoconf manual describes in detail what this file
300 You will write tests in your `configure.in' file to check for
301 conditions that may change from one system to another, such as the
302 presence of particular header files or functions.
304 For example, not all systems support the `gettimeofday' function.
305 If you want to use the `gettimeofday' function when it is available,
306 and to use some other function when it is not, you would check for this
307 by putting `AC_CHECK_FUNCS(gettimeofday)' in `configure.in'.
309 When the configure script is run at build time, this will arrange to
310 define the preprocessor macro `HAVE_GETTIMEOFDAY' to the value 1 if the
311 `gettimeofday' function is available, and to not define the macro at
312 all if the function is not available. Your code can then use `#ifdef'
313 to test whether it is safe to call `gettimeofday'.
315 If you have an existing body of code, the `autoscan' program may
316 help identify potential portability problems, and hence configure tests
317 that you will want to use. *Note Invoking autoscan: (autoconf)Invoking
320 Another handy tool for an existing body of code is `ifnames'. This
321 will show you all the preprocessor conditionals that the code already
322 uses. *Note Invoking ifnames: (autoconf)Invoking ifnames.
324 Besides the portability tests which are specific to your particular
325 package, every `configure.in' file should contain the following macros.
328 This macro takes a single argument, which is the name of a file in
329 your package. For example, `AC_INIT(foo.c)'.
332 This macro is optional. It may be used to indicate the version of
333 `autoconf' that you are using. This will prevent users from
334 running an earlier version of `autoconf' and perhaps getting an
335 invalid `configure' script. For example, `AC_PREREQ(2.12)'.
338 This macro takes two arguments: the name of the package, and a
339 version number. For example, `AM_INIT_AUTOMAKE(foo, 1.0)'. (This
340 macro is not needed if you are not using automake).
343 This macro names the header file which will hold the preprocessor
344 macro definitions at run time. Normally this should be
345 `config.h'. Your sources would then use `#include "config.h"' to
348 This macro may optionally name the input file for that header
349 file; by default, this is `config.h.in', but that file name works
350 poorly on DOS filesystems. Therefore, it is often better to name
351 it explicitly as `config.in'.
353 This is what you should normally put in `configure.in':
354 AM_CONFIG_HEADER(config.h:config.in)
356 (If you are not using automake, use `AC_CONFIG_HEADER' rather than
360 This macro always appears in Cygnus configure scripts. Other
361 programs may or may not use it.
363 If this macro is used, the `--enable-maintainer-mode' option is
364 required to enable automatic rebuilding of generated files used by
365 the configure system. This of course requires that developers be
366 aware of, and use, that option.
368 If this macro is not used, then the generated files will always be
369 rebuilt automatically. This will cause problems if the wrong
370 versions of autoconf, automake, or others are in the builder's
373 (If you are not using automake, you do not need to use this macro).
376 Either this macro or `AM_EXEEXT' always appears in Cygnus configure
377 files. Other programs may or may not use one of them.
379 This macro looks for the executable suffix used on the host
380 system. On Unix systems, this is the empty string. On Windows
381 systems, this is `.exe'. This macro directs automake to use the
382 executable suffix as appropriate when creating programs. This
383 macro does not take any arguments.
385 The `AC_EXEEXT' form is new, and is part of a Cygnus patch to
386 autoconf to support compiling with Visual C++. Older programs use
389 (Programs which do not use automake use neither `AC_EXEEXT' nor
393 If you are writing C code, you will normally want to use this
394 macro. It locates the C compiler to use. It does not take any
397 However, if this `configure.in' file is for a library which is to
398 be compiled by a cross compiler which may not fully work, then you
399 will not want to use `AC_PROG_CC'. Instead, you will want to use a
400 variant which does not call the macro `AC_PROG_CC_WORKS'. Examples
401 can be found in various `configure.in' files for libraries that are
402 compiled with cross compilers, such as libiberty or libgloss.
403 This is essentially a bug in autoconf, and there will probably be
404 a better workaround at some point.
407 If you are writing C++ code, you will want to use this macro. It
408 locates the C++ compiler to use. It does not take any arguments.
409 The same cross compiler comments apply as for `AC_PROG_CC'.
412 If you want to build libraries, and you want to permit them to be
413 shared, or you want to link against libraries which were built
414 using libtool, then you will need this macro. This macro is
415 required in order to use libtool.
417 By default, this will cause all libraries to be built as shared
418 libraries. To prevent this-to change the default-use
419 `AM_DISABLE_SHARED' before `AM_PROG_LIBTOOL'. The configure
420 options `--enable-shared' and `--disable-shared' may be used to
421 override the default at build time.
423 `AC_DEFINE(_GNU_SOURCE)'
424 GNU packages should normally include this line before any other
425 feature tests. This defines the macro `_GNU_SOURCE' when
426 compiling, which directs the libc header files to provide the
427 standard GNU system interfaces including all GNU extensions. If
428 this macro is not defined, certain GNU extensions may not be
432 This macro takes a list of file names which the configure process
433 should produce. This is normally a list of one or more `Makefile'
434 files in different directories. If your package lives entirely in
435 a single directory, you would use simply `AC_OUTPUT(Makefile)'.
436 If you also have, for example, a `lib' subdirectory, you would use
437 `AC_OUTPUT(Makefile lib/Makefile)'.
439 If you want to use locally defined macros in your `configure.in'
440 file, then you will need to write a `acinclude.m4' file which defines
441 them (if not using automake, this file is called `aclocal.m4').
442 Alternatively, you can put separate macros in an `m4' subdirectory, and
443 put `ACLOCAL_AMFLAGS = -I m4' in your `Makefile.am' file so that the
444 `aclocal' program will be able to find them.
446 The different macro prefixes indicate which tool defines the macro.
447 Macros which start with `AC_' are part of autoconf. Macros which start
448 with `AM_' are provided by automake or libtool.
451 File: configure.info, Node: Write Makefile.am, Next: Write acconfig.h, Prev: Write configure.in, Up: Getting Started
456 You must write the file `Makefile.am'. This is an automake input
457 file, and the automake manual describes in detail what this file should
460 The automake commands in `Makefile.am' mostly look like variable
461 assignments in a `Makefile'. automake recognizes special variable
462 names, and automatically add make rules to the output as needed.
464 There will be one `Makefile.am' file for each directory in your
465 package. For each directory with subdirectories, the `Makefile.am'
466 file should contain the line
467 SUBDIRS = DIR DIR ...
469 where each DIR is the name of a subdirectory.
471 For each `Makefile.am', there should be a corresponding `Makefile'
472 in the `AC_OUTPUT' macro in `configure.in'.
474 Every `Makefile.am' written at Cygnus should contain the line
475 AUTOMAKE_OPTIONS = cygnus
477 This puts automake into Cygnus mode. See the automake manual for
480 You may to include the version number of `automake' that you are
481 using on the `AUTOMAKE_OPTIONS' line. For example,
482 AUTOMAKE_OPTIONS = cygnus 1.3
484 This will prevent users from running an earlier version of `automake'
485 and perhaps getting an invalid `Makefile.in'.
487 If your package builds a program, then in the directory where that
488 program is built you will normally want a line like
489 bin_PROGRAMS = PROGRAM
491 where PROGRAM is the name of the program. You will then want a line
493 PROGRAM_SOURCES = FILE FILE ...
495 where each FILE is the name of a source file to link into the program
498 If your package builds a library, and you do not want the library to
499 ever be built as a shared library, then in the directory where that
500 library is built you will normally want a line like
501 lib_LIBRARIES = libNAME.a
503 where `libNAME.a' is the name of the library. You will then want a
505 libNAME_a_SOURCES = FILE FILE ...
507 where each FILE is the name of a source file to add to the library.
509 If your package builds a library, and you want to permit building the
510 library as a shared library, then in the directory where that library is
511 built you will normally want a line like
512 lib_LTLIBRARIES = libNAME.la
513 The use of `LTLIBRARIES', and the `.la' extension, indicate a
514 library to be built using libtool. As usual, you will then want a line
516 libNAME_la_SOURCES = FILE FILE ...
518 The strings `bin' and `lib' that appear above in `bin_PROGRAMS' and
519 `lib_LIBRARIES' are not arbitrary. They refer to particular
520 directories, which may be set by the `--bindir' and `--libdir' options
521 to `configure'. If those options are not used, the default values are
522 based on the `--prefix' or `--exec-prefix' options to `configure'. It
523 is possible to use other names if the program or library should be
524 installed in some other directory.
526 The `Makefile.am' file may also contain almost anything that may
527 appear in a normal `Makefile'. automake also supports many other
528 special variables, as well as conditionals.
530 See the automake manual for more information.
533 File: configure.info, Node: Write acconfig.h, Next: Generate files, Prev: Write Makefile.am, Up: Getting Started
538 If you are generating a portability header file, (i.e., you are using
539 `AM_CONFIG_HEADER' in `configure.in'), then you will have to write a
540 `acconfig.h' file. It will have to contain the following lines.
542 /* Name of package. */
545 /* Version of package. */
548 This requirement is really a bug in the system, and the requirement
549 may be eliminated at some later date.
551 The `acconfig.h' file will also similar comment and `#undef' lines
552 for any unusual macros in the `configure.in' file, including any macro
553 which appears in a `AC_DEFINE' macro.
555 In particular, if you are writing a GNU package and therefore include
556 `AC_DEFINE(_GNU_SOURCE)' in `configure.in' as suggested above, you will
557 need lines like this in `acconfig.h':
558 /* Enable GNU extensions. */
561 Normally the `autoheader' program will inform you of any such
562 requirements by printing an error message when it is run. However, if
563 you do anything particular odd in your `configure.in' file, you will
564 have to make sure that the right entries appear in `acconfig.h', since
565 otherwise the results of the tests may not be available in the
566 `config.h' file which your code will use.
568 (Thee `PACKAGE' and `VERSION' lines are not required if you are not
569 using automake, and in that case you may not need a `acconfig.h' file
573 File: configure.info, Node: Generate files, Next: Getting Started Example, Prev: Write acconfig.h, Up: Getting Started
578 Once you have written `configure.in', `Makefile.am', `acconfig.h',
579 and possibly `acinclude.m4', you must use autoconf and automake
580 programs to produce the first versions of the generated files. This is
581 done by executing the following sequence of commands.
588 The `aclocal' and `automake' commands are part of the automake
589 package, and the `autoconf' and `autoheader' commands are part of the
592 If you are using a `m4' subdirectory for your macros, you will need
593 to use the `-I m4' option when you run `aclocal'.
595 If you are not using the Cygnus tree, use the `-a' option when
596 running `automake' command in order to copy the required support files
597 into your source directory.
599 If you are using libtool, you must build and install the libtool
600 package with the same `--prefix' and `--exec-prefix' options as you
601 used with the autoconf and automake packages. You must do this before
602 running any of the above commands. If you are not using the Cygnus
603 tree, you will need to run the `libtoolize' program to copy the libtool
604 support files into your directory.
606 Once you have managed to run these commands without getting any
607 errors, you should create a new empty directory, and run the `configure'
608 script which will have been created by `autoconf' with the
609 `--enable-maintainer-mode' option. This will give you a set of
610 Makefiles which will include rules to automatically rebuild all the
613 After doing that, whenever you have changed some of the input files
614 and want to regenerated the other files, go to your object directory
615 and run `make'. Doing this is more reliable than trying to rebuild the
616 files manually, because there are complex order dependencies and it is
617 easy to forget something.
620 File: configure.info, Node: Getting Started Example, Prev: Generate files, Up: Getting Started
625 Let's consider a trivial example.
627 Suppose we want to write a simple version of `touch'. Our program,
628 which we will call `poke', will take a single file name argument, and
629 use the `utime' system call to set the modification and access times of
630 the file to the current time. We want this program to be highly
633 We'll first see what this looks like without using autoconf and
634 automake, and then see what it looks like with them.
638 * Getting Started Example 1:: First Try.
639 * Getting Started Example 2:: Second Try.
640 * Getting Started Example 3:: Third Try.
641 * Generate Files in Example:: Generate Files.
644 File: configure.info, Node: Getting Started Example 1, Next: Getting Started Example 2, Up: Getting Started Example
649 Here is our first try at `poke.c'. Note that we've written it
650 without ANSI/ISO C prototypes, since we want it to be highly portable.
654 #include <sys/types.h>
664 fprintf (stderr, "Usage: poke file\n");
668 if (utime (argv[1], NULL) < 0)
677 We also write a simple `Makefile'.
685 $(CC) -o poke $(CFLAGS) $(LDFLAGS) poke.o
689 Unfortunately, there are a few problems.
691 On older Unix systems derived from BSD 4.3, the `utime' system call
692 does not accept a second argument of `NULL'. On those systems, we need
693 to pass a pointer to `struct utimbuf' structure. Unfortunately, even
694 older systems don't define that structure; on those systems, we need to
695 pass an array of two `long' values.
697 The header file `stdlib.h' was invented by ANSI C, and older systems
698 don't have a copy. We included it above to get a declaration of `exit'.
700 We can find some of these portability problems by running
701 `autoscan', which will create a `configure.scan' file which we can use
702 as a prototype for our `configure.in' file. I won't show the output,
703 but it will notice the potential problems with `utime' and `stdlib.h'.
705 In our `Makefile', we don't provide any way to install the program.
706 This doesn't matter much for such a simple example, but a real program
707 will need an `install' target. For that matter, we will also want a
711 File: configure.info, Node: Getting Started Example 2, Next: Getting Started Example 3, Prev: Getting Started Example 1, Up: Getting Started Example
716 Here is our second try at this program.
718 We modify `poke.c' to use preprocessor macros to control what
719 features are available. (I've cheated a bit by using the same macro
720 names which autoconf will use).
728 #include <sys/types.h>
734 #ifndef HAVE_UTIME_NULL
738 #ifndef HAVE_STRUCT_UTIMBUF
754 now.actime = now.modtime = time (NULL);
755 return utime (file, &now);
758 #define utime(f, p) utime_now (f)
760 #endif /* HAVE_UTIME_NULL */
769 fprintf (stderr, "Usage: poke file\n");
773 if (utime (argv[1], NULL) < 0)
782 Here is the associated `Makefile'. We've added support for the
783 preprocessor flags we use. We've also added `install' and `clean'
786 # Set this to your installation directory.
787 bindir = /usr/local/bin
789 # Uncomment this if you have the standard ANSI/ISO C header files.
790 # STDC_HDRS = -DSTDC_HEADERS
792 # Uncomment this if you have utime.h.
793 # UTIME_H = -DHAVE_UTIME_H
795 # Uncomment this if utime (FILE, NULL) works on your system.
796 # UTIME_NULL = -DHAVE_UTIME_NULL
798 # Uncomment this if struct utimbuf is defined in utime.h.
799 # UTIMBUF = -DHAVE_STRUCT_UTIMBUF
804 ALL_CFLAGS = $(STDC_HDRS) $(UTIME_H) $(UTIME_NULL) $(UTIMBUF) $(CFLAGS)
809 $(CC) -o poke $(ALL_CFLAGS) $(LDFLAGS) poke.o
812 $(CC) -c $(ALL_CFLAGS) poke.c
815 cp poke $(bindir)/poke
820 Some problems with this approach should be clear.
822 Users who want to compile poke will have to know how `utime' works
823 on their systems, so that they can uncomment the `Makefile' correctly.
825 The installation is done using `cp', but many systems have an
826 `install' program which may be used, and which supports optional
827 features such as stripping debugging information out of the installed
830 The use of `Makefile' variables like `CC', `CFLAGS' and `LDFLAGS'
831 follows the requirements of the GNU standards. This is convenient for
832 all packages, since it reduces surprises for users. However, it is
833 easy to get the details wrong, and wind up with a slightly nonstandard
837 File: configure.info, Node: Getting Started Example 3, Next: Generate Files in Example, Prev: Getting Started Example 2, Up: Getting Started Example
842 For our third try at this program, we will write a `configure.in'
843 script to discover the configuration features on the host system, rather
844 than requiring the user to edit the `Makefile'. We will also write a
845 `Makefile.am' rather than a `Makefile'.
847 The only change to `poke.c' is to add a line at the start of the
851 The new `configure.in' file is as follows.
854 AM_INIT_AUTOMAKE(poke, 1.0)
855 AM_CONFIG_HEADER(config.h:config.in)
858 AC_CHECK_HEADERS(utime.h)
859 AC_EGREP_HEADER(utimbuf, utime.h, AC_DEFINE(HAVE_STRUCT_UTIMBUF))
863 The first four macros in this file, and the last one, were described
864 above; see *Note Write configure.in::. If we omit these macros, then
865 when we run `automake' we will get a reminder that we need them.
867 The other macros are standard autoconf macros.
870 Check for standard C headers.
873 Check whether a particular header file exists.
876 Check for a particular string in a particular header file, in this
877 case checking for `utimbuf' in `utime.h'.
880 Check whether `utime' accepts a NULL second argument to set the
881 file change time to the current time.
883 See the autoconf manual for a more complete description.
885 The new `Makefile.am' file is as follows. Note how simple this is
886 compared to our earlier `Makefile'.
890 poke_SOURCES = poke.c
892 This means that we should build a single program name `poke'. It
893 should be installed in the binary directory, which we called `bindir'
894 earlier. The program `poke' is built from the source file `poke.c'.
896 We must also write a `acconfig.h' file. Besides `PACKAGE' and
897 `VERSION', which must be mentioned for all packages which use automake,
898 we must include `HAVE_STRUCT_UTIMBUF', since we mentioned it in an
901 /* Name of package. */
904 /* Version of package. */
907 /* Whether utime.h defines struct utimbuf. */
908 #undef HAVE_STRUCT_UTIMBUF
911 File: configure.info, Node: Generate Files in Example, Prev: Getting Started Example 3, Up: Getting Started Example
916 We must now generate the other files, using the following commands.
923 When we run `autoheader', it will remind us of any macros we forgot
924 to add to `acconfig.h'.
926 When we run `automake', it will want to add some files to our
927 distribution. It will add them automatically if we use the
928 `--add-missing' option.
930 By default, `automake' will run in GNU mode, which means that it
931 will want us to create certain additional files; as of this writing, it
932 will want `NEWS', `README', `AUTHORS', and `ChangeLog', all of which
933 are files which should appear in a standard GNU distribution. We can
934 either add those files, or run `automake' with the `--foreign' option.
936 Running these tools will generate the following files, all of which
937 are described in the next chapter.
950 File: configure.info, Node: Files, Next: Configuration Names, Prev: Getting Started, Up: Top
955 As was seen in the previous chapter, the GNU configure and build
956 system uses a number of different files. The developer must write a
957 few files. The others are generated by various tools.
959 The system is rather flexible, and can be used in many different
960 ways. In describing the files that it uses, I will describe the common
961 case, and mention some other cases that may arise.
965 * Developer Files:: Developer Files.
966 * Build Files:: Build Files.
967 * Support Files:: Support Files.
970 File: configure.info, Node: Developer Files, Next: Build Files, Up: Files
975 This section describes the files written or generated by the
976 developer of a package.
980 * Developer Files Picture:: Developer Files Picture.
981 * Written Developer Files:: Written Developer Files.
982 * Generated Developer Files:: Generated Developer Files.
985 File: configure.info, Node: Developer Files Picture, Next: Written Developer Files, Up: Developer Files
987 Developer Files Picture
988 -----------------------
990 Here is a picture of the files which are written by the developer,
991 the generated files which would be included with a complete source
992 distribution, and the tools which create those files. The file names
993 are plain text and the tool names are enclosed by `*' characters (e.g.,
994 `autoheader' is the name of a tool, not the name of a file).
996 acconfig.h configure.in Makefile.am
998 | --------------+---------------------- |
1000 v v | acinclude.m4 | |
1001 *autoheader* | | v v
1002 | | v --->*automake*
1003 v |--->*aclocal* | |
1015 File: configure.info, Node: Written Developer Files, Next: Generated Developer Files, Prev: Developer Files Picture, Up: Developer Files
1017 Written Developer Files
1018 -----------------------
1020 The following files would be written by the developer.
1023 This is the configuration script. This script contains
1024 invocations of autoconf macros. It may also contain ordinary
1025 shell script code. This file will contain feature tests for
1026 portability issues. The last thing in the file will normally be
1027 an `AC_OUTPUT' macro listing which files to create when the
1028 builder runs the configure script. This file is always required
1029 when using the GNU configure system. *Note Write configure.in::.
1032 This is the automake input file. It describes how the code should
1033 be built. It consists of definitions of automake variables. It
1034 may also contain ordinary Makefile targets. This file is only
1035 needed when using automake (newer tools normally use automake, but
1036 there are still older tools which have not been converted, in
1037 which the developer writes `Makefile.in' directly). *Note Write
1041 When the configure script creates a portability header file, by
1042 using `AM_CONFIG_HEADER' (or, if not using automake,
1043 `AC_CONFIG_HEADER'), this file is used to describe macros which are
1044 not recognized by the `autoheader' command. This is normally a
1045 fairly uninteresting file, consisting of a collection of `#undef'
1046 lines with comments. Normally any call to `AC_DEFINE' in
1047 `configure.in' will require a line in this file. *Note Write
1051 This file is not always required. It defines local autoconf
1052 macros. These macros may then be used in `configure.in'. If you
1053 don't need any local autoconf macros, then you don't need this
1054 file at all. In fact, in general, you never need local autoconf
1055 macros, since you can put everything in `configure.in', but
1056 sometimes a local macro is convenient.
1058 Newer tools may omit `acinclude.m4', and instead use a
1059 subdirectory, typically named `m4', and define `ACLOCAL_AMFLAGS =
1060 -I m4' in `Makefile.am' to force `aclocal' to look there for macro
1061 definitions. The macro definitions are then placed in separate
1062 files in that directory.
1064 The `acinclude.m4' file is only used when using automake; in older
1065 tools, the developer writes `aclocal.m4' directly, if it is needed.
1068 File: configure.info, Node: Generated Developer Files, Prev: Written Developer Files, Up: Developer Files
1070 Generated Developer Files
1071 -------------------------
1073 The following files would be generated by the developer.
1075 When using automake, these files are normally not generated manually
1076 after the first time. Instead, the generated `Makefile' contains rules
1077 to automatically rebuild the files as required. When
1078 `AM_MAINTAINER_MODE' is used in `configure.in' (the normal case in
1079 Cygnus code), the automatic rebuilding rules will only be defined if
1080 you configure using the `--enable-maintainer-mode' option.
1082 When using automatic rebuilding, it is important to ensure that all
1083 the various tools have been built and installed on your `PATH'. Using
1084 automatic rebuilding is highly recommended, so much so that I'm not
1085 going to explain what you have to do if you don't use it.
1088 This is the configure script which will be run when building the
1089 package. This is generated by `autoconf' from `configure.in' and
1090 `aclocal.m4'. This is a shell script.
1093 This is the file which the configure script will turn into the
1094 `Makefile' at build time. This file is generated by `automake'
1095 from `Makefile.am'. If you aren't using automake, you must write
1096 this file yourself. This file is pretty much a normal `Makefile',
1097 with some configure substitutions for certain variables.
1100 This file is created by the `aclocal' program, based on the
1101 contents of `configure.in' and `acinclude.m4' (or, as noted in the
1102 description of `acinclude.m4' above, on the contents of an `m4'
1103 subdirectory). This file contains definitions of autoconf macros
1104 which `autoconf' will use when generating the file `configure'.
1105 These autoconf macros may be defined by you in `acinclude.m4' or
1106 they may be defined by other packages such as automake, libtool or
1107 gettext. If you aren't using automake, you will normally write
1108 this file yourself; in that case, if `configure.in' uses only
1109 standard autoconf macros, this file will not be needed at all.
1112 This file is created by `autoheader' based on `acconfig.h' and
1113 `configure.in'. At build time, the configure script will define
1114 some of the macros in it to create `config.h', which may then be
1115 included by your program. This permits your C code to use
1116 preprocessor conditionals to change its behaviour based on the
1117 characteristics of the host system. This file may also be called
1121 This rather uninteresting file, which I omitted from the picture,
1122 is generated by `automake'. It always contains the string
1123 `timestamp'. It is used as a timestamp file indicating whether
1124 `config.in' is up to date. Using a timestamp file means that
1125 `config.in' can be marked as up to date without actually changing
1126 its modification time. This is useful since `config.in' depends
1127 upon `configure.in', but it is easy to change `configure.in' in a
1128 way which does not affect `config.in'.
1131 File: configure.info, Node: Build Files, Next: Support Files, Prev: Developer Files, Up: Files
1136 This section describes the files which are created at configure and
1137 build time. These are the files which somebody who builds the package
1140 Of course, the developer will also build the package. The
1141 distinction between developer files and build files is not that the
1142 developer does not see the build files, but that somebody who only
1143 builds the package does not have to worry about the developer files.
1147 * Build Files Picture:: Build Files Picture.
1148 * Build Files Description:: Build Files Description.
1151 File: configure.info, Node: Build Files Picture, Next: Build Files Description, Up: Build Files
1156 Here is a picture of the files which will be created at build time.
1157 `config.status' is both a created file and a shell script which is run
1158 to create other files, and the picture attempts to show that.
1160 config.in *configure* Makefile.in
1165 *config.status*<======+==========>*config.status*
1171 File: configure.info, Node: Build Files Description, Prev: Build Files Picture, Up: Build Files
1173 Build Files Description
1174 -----------------------
1176 This is a description of the files which are created at build time.
1179 The first step in building a package is to run the `configure'
1180 script. The `configure' script will create the file
1181 `config.status', which is itself a shell script. When you first
1182 run `configure', it will automatically run `config.status'. An
1183 `Makefile' derived from an automake generated `Makefile.in' will
1184 contain rules to automatically run `config.status' again when
1185 necessary to recreate certain files if their inputs change.
1188 This is the file which make will read to build the program. The
1189 `config.status' script will transform `Makefile.in' into
1193 This file defines C preprocessor macros which C code can use to
1194 adjust its behaviour on different systems. The `config.status'
1195 script will transform `config.in' into `config.h'.
1198 This file did not fit neatly into the picture, and I omitted it.
1199 It is used by the `configure' script to cache results between
1200 runs. This can be an important speedup. If you modify
1201 `configure.in' in such a way that the results of old tests should
1202 change (perhaps you have added a new library to `LDFLAGS'), then
1203 you will have to remove `config.cache' to force the tests to be
1206 The autoconf manual explains how to set up a site specific cache
1207 file. This can speed up running `configure' scripts on your
1211 This file, which I omitted from the picture, is similar to
1212 `stamp-h.in'. It is used as a timestamp file indicating whether
1213 `config.h' is up to date. This is useful since `config.h' depends
1214 upon `config.status', but it is easy for `config.status' to change
1215 in a way which does not affect `config.h'.
1218 File: configure.info, Node: Support Files, Prev: Build Files, Up: Files
1223 The GNU configure and build system requires several support files to
1224 be included with your distribution. You do not normally need to concern
1225 yourself with these. If you are using the Cygnus tree, most are already
1226 present. Otherwise, they will be installed with your source by
1227 `automake' (with the `--add-missing' option) and `libtoolize'.
1229 You don't have to put the support files in the top level directory.
1230 You can put them in a subdirectory, and use the `AC_CONFIG_AUX_DIR'
1231 macro in `configure.in' to tell `automake' and the `configure' script
1234 In this section, I describe the support files, so that you can know
1235 what they are and why they are there.
1238 Added by automake if you are using gettext. This is a
1239 documentation file about the gettext project.
1242 Used by an automake generated `Makefile' if you put `ansi2knr' in
1243 `AUTOMAKE_OPTIONS' in `Makefile.am'. This permits compiling ANSI
1244 C code with a K&R C compiler.
1247 The man page which goes with `ansi2knr.c'.
1250 A shell script which determines the configuration name for the
1251 system on which it is run.
1254 A shell script which canonicalizes a configuration name entered by
1258 Used to compile Emacs LISP files.
1261 A shell script which installs a program. This is used if the
1262 configure script can not find an install binary.
1265 Used by libtool. This is a shell script which configures libtool
1266 for the particular system on which it is used.
1269 Used by libtool. This is the actual libtool script which is used,
1270 after it is configured by `ltconfig' to build a library.
1273 A shell script used by an automake generated `Makefile' to pretty
1274 print the modification time of a file. This is used to maintain
1275 version numbers for texinfo files.
1278 A shell script used if some tool is missing entirely. This is
1279 used by an automake generated `Makefile' to avoid certain sorts of
1283 A shell script which creates a directory, including all parent
1284 directories. This is used by an automake generated `Makefile'
1285 during installation.
1288 Required if you have any texinfo files. This is used when
1289 converting Texinfo files into DVI using `texi2dvi' and TeX.
1292 A shell script used by an automake generated `Makefile' to run
1293 programs like `bison', `yacc', `flex', and `lex'. These programs
1294 default to producing output files with a fixed name, and the
1295 `ylwrap' script runs them in a subdirectory to avoid file name
1296 conflicts when using a parallel make program.
1299 File: configure.info, Node: Configuration Names, Next: Cross Compilation Tools, Prev: Files, Up: Top
1304 The GNU configure system names all systems using a "configuration
1305 name". All such names used to be triplets (they may now contain four
1306 parts in certain cases), and the term "configuration triplet" is still
1311 * Configuration Name Definition:: Configuration Name Definition.
1312 * Using Configuration Names:: Using Configuration Names.