aboutsummaryrefslogtreecommitdiffstats
path: root/autoconf
diff options
context:
space:
mode:
authorJohn Criswell <criswell@uiuc.edu>2003-09-30 15:55:44 +0000
committerJohn Criswell <criswell@uiuc.edu>2003-09-30 15:55:44 +0000
commit12399a13c853c6e5ee62ad8a2932d9f3c3e80fa9 (patch)
treed5aa9ad510035f0b8cc1c1a3d31415d9104e3c82 /autoconf
parent56a4279d616e084ced2cf5e09fd69e371b6382a5 (diff)
downloadexternal_llvm-12399a13c853c6e5ee62ad8a2932d9f3c3e80fa9.zip
external_llvm-12399a13c853c6e5ee62ad8a2932d9f3c3e80fa9.tar.gz
external_llvm-12399a13c853c6e5ee62ad8a2932d9f3c3e80fa9.tar.bz2
Added the ability to conditionally configure the reopt project if it is checked
out under projects/reopt. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8762 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'autoconf')
-rw-r--r--autoconf/configure.ac5
1 files changed, 5 insertions, 0 deletions
diff --git a/autoconf/configure.ac b/autoconf/configure.ac
index 01e1199..dd180c8 100644
--- a/autoconf/configure.ac
+++ b/autoconf/configure.ac
@@ -30,6 +30,11 @@ then
fi
fi
+if test -d ${srcdir}/projects/reopt
+then
+ AC_CONFIG_SUBDIRS(projects/reopt)
+fi
+
dnl Configure a header file
AC_CONFIG_HEADERS(include/Config/config.h)
AC_CONFIG_MAKEFILE(Makefile)