diff options
author | rdivacky <rdivacky@FreeBSD.org> | 2010-06-10 19:59:23 +0000 |
---|---|---|
committer | rdivacky <rdivacky@FreeBSD.org> | 2010-06-10 19:59:23 +0000 |
commit | da32c729a8e4c8fdfd1a30d4dcd2955d1366f22c (patch) | |
tree | 5df31f11bd529d5065815f704c0fb41bc9ce26a1 /contrib/llvm/projects/sample/autoconf/configure.ac | |
parent | 88ae17c7ef1b0e23829cd4e275aeb58b58df7609 (diff) | |
download | FreeBSD-src-da32c729a8e4c8fdfd1a30d4dcd2955d1366f22c.zip FreeBSD-src-da32c729a8e4c8fdfd1a30d4dcd2955d1366f22c.tar.gz |
Remove Xcode cmake win32 projects unittests from LLVM and
clang.xcodeproj INPUTS win32 from clang.
Requested by: jkim
Approved by: ed (mentor)
Diffstat (limited to 'contrib/llvm/projects/sample/autoconf/configure.ac')
-rw-r--r-- | contrib/llvm/projects/sample/autoconf/configure.ac | 69 |
1 files changed, 0 insertions, 69 deletions
diff --git a/contrib/llvm/projects/sample/autoconf/configure.ac b/contrib/llvm/projects/sample/autoconf/configure.ac deleted file mode 100644 index 221dcc4..0000000 --- a/contrib/llvm/projects/sample/autoconf/configure.ac +++ /dev/null @@ -1,69 +0,0 @@ -dnl ************************************************************************** -dnl * Initialize -dnl ************************************************************************** -AC_INIT([[[SAMPLE]]],[[[x.xx]]],[bugs@yourdomain]) - -dnl Identify where LLVM source tree is -LLVM_SRC_ROOT="../../" -LLVM_OBJ_ROOT="../../" - -dnl Tell autoconf that this is an LLVM project being configured -dnl This provides the --with-llvmsrc and --with-llvmobj options -LLVM_CONFIG_PROJECT($LLVM_SRC_ROOT,$LLVM_OBJ_ROOT) - -dnl Tell autoconf that the auxilliary files are actually located in -dnl the LLVM autoconf directory, not here. -AC_CONFIG_AUX_DIR($LLVM_SRC/autoconf) - -dnl Verify that the source directory is valid -AC_CONFIG_SRCDIR(["Makefile.common.in"]) - -dnl Configure a common Makefile -AC_CONFIG_FILES(Makefile.common) - -dnl Configure project makefiles -dnl List every Makefile that exists within your source tree -AC_CONFIG_MAKEFILE(Makefile) -AC_CONFIG_MAKEFILE(lib/Makefile) -AC_CONFIG_MAKEFILE(lib/sample/Makefile) -AC_CONFIG_MAKEFILE(tools/Makefile) -AC_CONFIG_MAKEFILE(tools/sample/Makefile) - -dnl ************************************************************************** -dnl * Determine which system we are building on -dnl ************************************************************************** - -dnl ************************************************************************** -dnl * Check for programs. -dnl ************************************************************************** - -dnl ************************************************************************** -dnl * Check for libraries. -dnl ************************************************************************** - -dnl ************************************************************************** -dnl * Checks for header files. -dnl ************************************************************************** - -dnl ************************************************************************** -dnl * Checks for typedefs, structures, and compiler characteristics. -dnl ************************************************************************** - -dnl ************************************************************************** -dnl * Checks for library functions. -dnl ************************************************************************** - -dnl ************************************************************************** -dnl * Enable various compile-time options -dnl ************************************************************************** - -dnl ************************************************************************** -dnl * Set the location of various third-party software packages -dnl ************************************************************************** - -dnl ************************************************************************** -dnl * Create the output files -dnl ************************************************************************** - -dnl This must be last -AC_OUTPUT |