Skip to content

Commit

Permalink
Configure all project directories contained in llvm/projects.
Browse files Browse the repository at this point in the history
The autoconf program will generate a warning about how we should use a
literal in AC_CONFIG_SUBDIRS.  This warning can be ignored.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10222 91177308-0d34-0410-b5e6-96231b3b80d8
  • Loading branch information
John Criswell committed Nov 25, 2003
1 parent fa3711a commit 33a911a
Show file tree
Hide file tree
Showing 2 changed files with 52 additions and 149 deletions.
39 changes: 13 additions & 26 deletions autoconf/configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -30,20 +30,19 @@ 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)
fi

if test -d ${srcdir}/projects/poolalloc
then
AC_CONFIG_SUBDIRS(projects/poolalloc)
fi
dnl
dnl Configure all of the projects present in our source tree.
dnl
for i in `ls ${srcdir}/projects`
do
if test ${i} != "CVS"
then
if test -d ${srcdir}/projects/${i}
then
AC_CONFIG_SUBDIRS(projects/${i})
fi
fi
done

dnl Configure a header file
AC_CONFIG_HEADERS(include/Config/config.h)
Expand Down Expand Up @@ -94,18 +93,6 @@ AC_CONFIG_MAKEFILE(test/Programs/SingleSource/Makefile.singlesrc)
AC_CONFIG_MAKEFILE(tools/Makefile)
AC_CONFIG_MAKEFILE(utils/Makefile)
AC_CONFIG_MAKEFILE(projects/Makefile)
AC_CONFIG_MAKEFILE(projects/ModuleMaker/Makefile)
AC_CONFIG_MAKEFILE(projects/ModuleMaker/Makefile.common)
AC_CONFIG_MAKEFILE(projects/ModuleMaker/tools/Makefile)
AC_CONFIG_MAKEFILE(projects/ModuleMaker/tools/ModuleMaker/Makefile)
AC_CONFIG_MAKEFILE(projects/Stacker/Makefile)
AC_CONFIG_MAKEFILE(projects/Stacker/lib/Makefile)
AC_CONFIG_MAKEFILE(projects/Stacker/lib/compiler/Makefile)
AC_CONFIG_MAKEFILE(projects/Stacker/lib/runtime/Makefile)
AC_CONFIG_MAKEFILE(projects/Stacker/tools/Makefile)
AC_CONFIG_MAKEFILE(projects/Stacker/tools/stkrc/Makefile)
AC_CONFIG_MAKEFILE(projects/Stacker/test/Makefile)
AC_CONFIG_MAKEFILE(projects/Stacker/samples/Makefile)

dnl **************************************************************************
dnl * Determine which system we are building on
Expand Down
Loading

0 comments on commit 33a911a

Please sign in to comment.