several major improvements to the sparc backend: support for weak linkage
[llvm/avr.git] / projects / sample / autoconf / configure.ac
blob37c93a8f51529f9a219e5eb2e57d050f21fdf745
1 dnl **************************************************************************
2 dnl * Initialize
3 dnl **************************************************************************
4 AC_INIT([[[SAMPLE]]],[[[x.xx]]],[bugs@yourdomain])
6 dnl Identify where LLVM source tree is
7 LLVM_SRC_ROOT="../../"
8 LLVM_OBJ_ROOT="../../"
9 dnl Tell autoconf that the auxilliary files are actually located in
10 dnl the LLVM autoconf directory, not here.
11 AC_CONFIG_AUX_DIR($LLVM_SRC_ROOT/autoconf)
13 dnl Tell autoconf that this is an LLVM project being configured
14 dnl This provides the --with-llvmsrc and --with-llvmobj options
15 LLVM_CONFIG_PROJECT($LLVM_SRC_ROOT,$LLVM_OBJ_ROOT)
17 dnl Verify that the source directory is valid
18 AC_CONFIG_SRCDIR(["Makefile.common.in"])
20 dnl Configure a common Makefile
21 AC_CONFIG_FILES(Makefile.common)
23 dnl Configure project makefiles
24 dnl List every Makefile that exists within your source tree
25 AC_CONFIG_MAKEFILE(Makefile)
26 AC_CONFIG_MAKEFILE(lib/Makefile)
27 AC_CONFIG_MAKEFILE(lib/sample/Makefile)
28 AC_CONFIG_MAKEFILE(tools/Makefile)
29 AC_CONFIG_MAKEFILE(tools/sample/Makefile)
31 dnl **************************************************************************
32 dnl * Determine which system we are building on
33 dnl **************************************************************************
35 dnl **************************************************************************
36 dnl * Check for programs.
37 dnl **************************************************************************
39 dnl **************************************************************************
40 dnl * Check for libraries.
41 dnl **************************************************************************
43 dnl **************************************************************************
44 dnl * Checks for header files.
45 dnl **************************************************************************
47 dnl **************************************************************************
48 dnl * Checks for typedefs, structures, and compiler characteristics.
49 dnl **************************************************************************
51 dnl **************************************************************************
52 dnl * Checks for library functions.
53 dnl **************************************************************************
55 dnl **************************************************************************
56 dnl * Enable various compile-time options
57 dnl **************************************************************************
59 dnl **************************************************************************
60 dnl * Set the location of various third-party software packages
61 dnl **************************************************************************
63 dnl **************************************************************************
64 dnl * Create the output files
65 dnl **************************************************************************
67 dnl This must be last
68 AC_OUTPUT