diff options
author | Brian Gaeke <gaeke@uiuc.edu> | 2004-01-13 07:09:56 +0000 |
---|---|---|
committer | Brian Gaeke <gaeke@uiuc.edu> | 2004-01-13 07:09:56 +0000 |
commit | f29202149ef7cc6f7ff538d134d657ee6f034255 (patch) | |
tree | 37dca0c7d0a326896c1d8554f67d1e4f35a905ae /Makefile | |
parent | 1281063da2f782dd92ef7954a5cfed264f067147 (diff) |
Simplify configure rules. (I don't know if anyone else cares...)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10816 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 7 |
1 files changed, 2 insertions, 5 deletions
@@ -25,14 +25,11 @@ distclean:: clean tools-only: @for dir in lib/Support utils lib tools; do $(MAKE) -C $$dir; done -AUTOCONF = autoconf -AUTOHEADER = autoheader - configure: autoconf/configure.ac autoconf/aclocal.m4 - cd autoconf && $(AUTOCONF) -o ../configure configure.ac + cd autoconf && aclocal && autoconf -o ../configure configure.ac include/Config/config.h.in: autoconf/configure.ac autoconf/aclocal.m4 - $(AUTOHEADER) -I autoconf autoconf/configure.ac + autoheader -I autoconf autoconf/configure.ac # Install support for llvm include files. |