Lines Matching full:projects
68 dnl Configure all of the projects present in our source tree. While we could
69 dnl just AC_CONFIG_SUBDIRS on the set of directories in projects that have a
71 dnl Instead we match on the known projects.
74 dnl One tricky part of doing this is that some projects depend upon other
75 dnl projects. For example, several projects rely upon the LLVM test suite.
76 dnl We want to configure those projects first so that their object trees are
77 dnl created before running the configure scripts of projects that depend upon
81 dnl Several projects use llvm-gcc, so configure that first
82 if test -d ${srcdir}/projects/llvm-gcc ; then
83 AC_CONFIG_SUBDIRS([projects/llvm-gcc])
86 dnl Several projects use the LLVM test suite, so configure it next.
87 if test -d ${srcdir}/projects/test-suite ; then
88 AC_CONFIG_SUBDIRS([projects/test-suite])
93 if test -d ${srcdir}/projects/llvm-test ; then
94 AC_CONFIG_SUBDIRS([projects/llvm-test])
97 dnl Some projects use poolalloc; configure that next
98 if test -d ${srcdir}/projects/poolalloc ; then
99 AC_CONFIG_SUBDIRS([projects/poolalloc])
102 if test -d ${srcdir}/projects/llvm-poolalloc ; then
103 AC_CONFIG_SUBDIRS([projects/llvm-poolalloc])
106 dnl Check for all other projects
107 for i in `ls ${srcdir}/projects`
109 if test -d ${srcdir}/projects/${i} ; then
111 sample) AC_CONFIG_SUBDIRS([projects/sample]) ;;
112 privbracket) AC_CONFIG_SUBDIRS([projects/privbracket]) ;;
113 llvm-stacker) AC_CONFIG_SUBDIRS([projects/llvm-stacker]) ;;
114 llvm-reopt) AC_CONFIG_SUBDIRS([projects/llvm-reopt]);;
115 llvm-java) AC_CONFIG_SUBDIRS([projects/llvm-java]) ;;
116 llvm-tv) AC_CONFIG_SUBDIRS([projects/llvm-tv]) ;;
117 safecode) AC_CONFIG_SUBDIRS([projects/safecode]) ;;
118 llvm-kernel) AC_CONFIG_SUBDIRS([projects/llvm-kernel]) ;;
1651 AC_CONFIG_MAKEFILE(projects/Makefile)