diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2004-08-23 19:28:39 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2004-08-23 19:28:39 +0000 |
commit | b987b7cedecca40d7a2ae34618af6ec6045532e4 (patch) | |
tree | 426f50ca25704d2246cf9c7f30038a3c4ced493c /llvm/projects/SmallExamples/ModuleMaker/autoconf/configure.ac | |
parent | 300396971c29edefef8bde7a6faf825d7cd877fb (diff) | |
download | bcm5719-llvm-b987b7cedecca40d7a2ae34618af6ec6045532e4.tar.gz bcm5719-llvm-b987b7cedecca40d7a2ae34618af6ec6045532e4.zip |
Moved the "SmallExamples" out of the /projects directory and into a new
/examples directory. History was maintained. These programs do not need to
be configured but things in /projects must be.
llvm-svn: 16002
Diffstat (limited to 'llvm/projects/SmallExamples/ModuleMaker/autoconf/configure.ac')
-rw-r--r-- | llvm/projects/SmallExamples/ModuleMaker/autoconf/configure.ac | 60 |
1 files changed, 0 insertions, 60 deletions
diff --git a/llvm/projects/SmallExamples/ModuleMaker/autoconf/configure.ac b/llvm/projects/SmallExamples/ModuleMaker/autoconf/configure.ac deleted file mode 100644 index eeb5b727d04..00000000000 --- a/llvm/projects/SmallExamples/ModuleMaker/autoconf/configure.ac +++ /dev/null @@ -1,60 +0,0 @@ -dnl ************************************************************************** -dnl * Initialize -dnl ************************************************************************** -AC_INIT([[[ModuleMaker]]],[[[x.xx]]],[bugs@yourdomain]) - -dnl Place all of the extra autoconf files into the config subdirectory -AC_CONFIG_AUX_DIR([autoconf]) - -dnl Configure a header file - -dnl Configure Makefiles -dnl List every Makefile that exists within your source tree - -AC_CONFIG_MAKEFILE(Makefile) - -dnl ************************************************************************** -dnl * Determine which system we are building on -dnl ************************************************************************** - -dnl ************************************************************************** -dnl * Check for programs. -dnl ************************************************************************** - -dnl Verify that the source directory is valid -AC_CONFIG_SRCDIR(["Makefile.common.in"]) - -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 Location of LLVM source code -AC_ARG_WITH(llvmsrc,AC_HELP_STRING([--with-llvmsrc],[Location of LLVM Source Code]),AC_SUBST(LLVM_SRC,[$withval]),AC_SUBST(LLVM_SRC,[`cd ${srcdir}/../..; pwd`])) - -dnl Location of LLVM object code -AC_ARG_WITH(llvmobj,AC_HELP_STRING([--with-llvmobj],[Location of LLVM Object Code]),AC_SUBST(LLVM_OBJ,[$withval]),AC_SUBST(LLVM_OBJ,[`cd ../..; pwd`])) - -dnl ************************************************************************** -dnl * Create the output files -dnl ************************************************************************** -AC_OUTPUT(Makefile.common) |