Fixed some bugs.
[llvm/zpu.git] / projects / sample / autoconf / configure.ac
blob221dcc45edc0df7f657ce272838d896e8773104a
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="../../"
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)
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)
18 dnl Verify that the source directory is valid
19 AC_CONFIG_SRCDIR(["Makefile.common.in"])
21 dnl Configure a common Makefile
22 AC_CONFIG_FILES(Makefile.common)
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)
32 dnl **************************************************************************
33 dnl * Determine which system we are building on
34 dnl **************************************************************************
36 dnl **************************************************************************
37 dnl * Check for programs.
38 dnl **************************************************************************
40 dnl **************************************************************************
41 dnl * Check for libraries.
42 dnl **************************************************************************
44 dnl **************************************************************************
45 dnl * Checks for header files.
46 dnl **************************************************************************
48 dnl **************************************************************************
49 dnl * Checks for typedefs, structures, and compiler characteristics.
50 dnl **************************************************************************
52 dnl **************************************************************************
53 dnl * Checks for library functions.
54 dnl **************************************************************************
56 dnl **************************************************************************
57 dnl * Enable various compile-time options
58 dnl **************************************************************************
60 dnl **************************************************************************
61 dnl * Set the location of various third-party software packages
62 dnl **************************************************************************
64 dnl **************************************************************************
65 dnl * Create the output files
66 dnl **************************************************************************
68 dnl This must be last
69 AC_OUTPUT