* Move all the "standard" configuration stuff to the start of the file
[oota-llvm.git] / projects / sample / autoconf / configure.ac
1 dnl **************************************************************************
2 dnl * Initialize
3 dnl **************************************************************************
4 AC_INIT([[[SAMPLE]]],[[[x.xx]]],[bugs@yourdomain])
5
6 dnl Tell autoconf that the auxilliary files are actually located in
7 dnl the LLVM autoconf directory, not here.
8 AC_CONFIG_AUX_DIR(../../autoconf)
9
10 dnl Tell autoconf that this is an LLVM project being configured
11 dnl This provides the --with-llvmsrc and --with-llvmobj options
12 LLVM_CONFIG_PROJECT
13
14 dnl Verify that the source directory is valid
15 AC_CONFIG_SRCDIR(["Makefile.common.in"])
16
17 dnl Configure a common Makefile
18 AC_CONFIG_FILES(Makefile.common)
19
20 dnl Configure project makefiles
21 dnl List every Makefile that exists within your source tree
22 AC_CONFIG_MAKEFILE(Makefile)
23 AC_CONFIG_MAKEFILE(lib/Makefile)
24 AC_CONFIG_MAKEFILE(lib/sample/Makefile)
25 AC_CONFIG_MAKEFILE(tools/Makefile)
26 AC_CONFIG_MAKEFILE(tools/sample/Makefile)
27
28 dnl **************************************************************************
29 dnl * Determine which system we are building on
30 dnl **************************************************************************
31
32 dnl **************************************************************************
33 dnl * Check for programs.
34 dnl **************************************************************************
35
36 dnl **************************************************************************
37 dnl * Check for libraries.
38 dnl **************************************************************************
39
40 dnl **************************************************************************
41 dnl * Checks for header files.
42 dnl **************************************************************************
43
44 dnl **************************************************************************
45 dnl * Checks for typedefs, structures, and compiler characteristics.
46 dnl **************************************************************************
47
48 dnl **************************************************************************
49 dnl * Checks for library functions.
50 dnl **************************************************************************
51
52 dnl **************************************************************************
53 dnl * Enable various compile-time options
54 dnl **************************************************************************
55
56 dnl **************************************************************************
57 dnl * Set the location of various third-party software packages
58 dnl **************************************************************************
59
60 dnl **************************************************************************
61 dnl * Create the output files
62 dnl **************************************************************************
63
64 dnl This must be last
65 AC_OUTPUT