aboutsummaryrefslogtreecommitdiffstats
path: root/autoconf
diff options
context:
space:
mode:
authorJohn Criswell <criswell@uiuc.edu>2003-10-16 01:49:07 +0000
committerJohn Criswell <criswell@uiuc.edu>2003-10-16 01:49:07 +0000
commit1630189e8cb9b85c843f07f0b27540499f62a088 (patch)
treea5953c156bcb933d77d924a09a3e417aeb6586d6 /autoconf
parent7ec78aa645cae849c54a051cd8783b70c1d8a261 (diff)
downloadexternal_llvm-1630189e8cb9b85c843f07f0b27540499f62a088.zip
external_llvm-1630189e8cb9b85c843f07f0b27540499f62a088.tar.gz
external_llvm-1630189e8cb9b85c843f07f0b27540499f62a088.tar.bz2
Added autoconf support for the sample project.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@9152 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'autoconf')
-rw-r--r--autoconf/configure.ac12
1 files changed, 5 insertions, 7 deletions
diff --git a/autoconf/configure.ac b/autoconf/configure.ac
index 62e6740..8614b17 100644
--- a/autoconf/configure.ac
+++ b/autoconf/configure.ac
@@ -30,6 +30,11 @@ then
fi
fi
+if test -d ${srcdir}/projects/sample
+then
+ AC_CONFIG_SUBDIRS(projects/sample)
+fi
+
if test -d ${srcdir}/projects/reopt
then
AC_CONFIG_SUBDIRS(projects/reopt)
@@ -206,13 +211,6 @@ AC_CONFIG_MAKEFILE(utils/Burg/Makefile)
AC_CONFIG_MAKEFILE(utils/Burg/Doc/Makefile)
AC_CONFIG_MAKEFILE(utils/TableGen/Makefile)
AC_CONFIG_MAKEFILE(projects/Makefile)
-AC_CONFIG_MAKEFILE(projects/sample/Makefile)
-AC_CONFIG_MAKEFILE(projects/sample/Makefile.common)
-AC_CONFIG_MAKEFILE(projects/sample/Makefile.config)
-AC_CONFIG_MAKEFILE(projects/sample/lib/Makefile)
-AC_CONFIG_MAKEFILE(projects/sample/lib/sample/Makefile)
-AC_CONFIG_MAKEFILE(projects/sample/tools/Makefile)
-AC_CONFIG_MAKEFILE(projects/sample/tools/sample/Makefile)
AC_CONFIG_MAKEFILE(projects/ModuleMaker/Makefile)
AC_CONFIG_MAKEFILE(projects/ModuleMaker/Makefile.common)
AC_CONFIG_MAKEFILE(projects/ModuleMaker/tools/Makefile)