Fix autoconf llvm srcdir location for generic projects.
[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 Identify where LLVM source tree is
7 LLVM_SRC_ROOT="../../"
8 LLVM_OBJ_ROOT="../../"
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($LLVM_SRC_ROOT,$LLVM_OBJ_ROOT)
13
14 dnl Tell autoconf that the auxilliary files are actually located in
15 dnl the LLVM autoconf directory, not here.
16 AC_CONFIG_AUX_DIR($LLVM_SRC/autoconf)
17
18 dnl Verify that the source directory is valid
19 AC_CONFIG_SRCDIR(["Makefile.common.in"])
20
21 dnl Configure a common Makefile
22 AC_CONFIG_FILES(Makefile.common)
23
24 dnl Configure project makefiles
25 dnl List every Makefile that exists within your source tree
26 AC_CONFIG_MAKEFILE(Makefile)
27 AC_CONFIG_MAKEFILE(lib/Makefile)
28 AC_CONFIG_MAKEFILE(lib/sample/Makefile)
29 AC_CONFIG_MAKEFILE(tools/Makefile)
30 AC_CONFIG_MAKEFILE(tools/sample/Makefile)
31
32 dnl **************************************************************************
33 dnl * Determine which system we are building on
34 dnl **************************************************************************
35
36 dnl **************************************************************************
37 dnl * Check for programs.
38 dnl **************************************************************************
39
40 dnl **************************************************************************
41 dnl * Check for libraries.
42 dnl **************************************************************************
43
44 dnl **************************************************************************
45 dnl * Checks for header files.
46 dnl **************************************************************************
47
48 dnl **************************************************************************
49 dnl * Checks for typedefs, structures, and compiler characteristics.
50 dnl **************************************************************************
51
52 dnl **************************************************************************
53 dnl * Checks for library functions.
54 dnl **************************************************************************
55
56 dnl **************************************************************************
57 dnl * Enable various compile-time options
58 dnl **************************************************************************
59
60 dnl **************************************************************************
61 dnl * Set the location of various third-party software packages
62 dnl **************************************************************************
63
64 dnl **************************************************************************
65 dnl * Create the output files
66 dnl **************************************************************************
67
68 dnl This must be last
69 AC_OUTPUT