Added autoconf support for the sample project.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@9152 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
John Criswell 2003-10-16 01:49:07 +00:00
parent 7ec78aa645
commit 1630189e8c

View File

@ -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)