diff options
author | John Criswell <criswell@uiuc.edu> | 2003-10-16 01:49:07 +0000 |
---|---|---|
committer | John Criswell <criswell@uiuc.edu> | 2003-10-16 01:49:07 +0000 |
commit | 1630189e8cb9b85c843f07f0b27540499f62a088 (patch) | |
tree | a5953c156bcb933d77d924a09a3e417aeb6586d6 | |
parent | 7ec78aa645cae849c54a051cd8783b70c1d8a261 (diff) |
Added autoconf support for the sample project.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@9152 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | autoconf/configure.ac | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/autoconf/configure.ac b/autoconf/configure.ac index 62e6740b52..8614b17634 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) |