aboutsummaryrefslogtreecommitdiffstats
path: root/examples/ModuleMaker/autoconf/configure.ac
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2004-08-23 19:29:54 +0000
committerReid Spencer <rspencer@reidspencer.com>2004-08-23 19:29:54 +0000
commit3a168a7d6888d33984460589b891f591abb862f1 (patch)
tree8ae6d5439b4fee5650d1fe2f99271fb76ea68613 /examples/ModuleMaker/autoconf/configure.ac
parent157b956e42871b53bb9c72e28d6f3409edb4fe42 (diff)
downloadexternal_llvm-3a168a7d6888d33984460589b891f591abb862f1.zip
external_llvm-3a168a7d6888d33984460589b891f591abb862f1.tar.gz
external_llvm-3a168a7d6888d33984460589b891f591abb862f1.tar.bz2
Moved small examples from /projects/SmallExamples to /examples.
Made the "ModuleMaker" into an example since its just one source file. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@16003 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'examples/ModuleMaker/autoconf/configure.ac')
-rw-r--r--examples/ModuleMaker/autoconf/configure.ac60
1 files changed, 0 insertions, 60 deletions
diff --git a/examples/ModuleMaker/autoconf/configure.ac b/examples/ModuleMaker/autoconf/configure.ac
deleted file mode 100644
index eeb5b72..0000000
--- a/examples/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)