diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2007-07-08 03:50:22 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2007-07-08 03:50:22 +0000 |
commit | 51cf6426bf2ec569d843418077af59e7080e7f3e (patch) | |
tree | ab06cbe66eed729aef15e75441545f381765a18d /Makefile | |
parent | 8d87a6b29c43c5bbed3e7c8f760d2cb6342eb632 (diff) |
Install things needed by llvm-top to allow successful building
of llvm from that level.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@38423 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -128,4 +128,12 @@ show-footprint: $(Verb) du -sk $(ExmplDir) $(Verb) du -sk $(ObjDir) +build-for-llvm-top: + $(Verb) if test ! -f ./config.status ; then \ + ./configure --prefix="$(LLVM_TOP)/install" \ + --with-llvm-gcc="$(LLVM_TOP)/llvm-gcc" ; \ + fi + $(Verb) $(MAKE) tools-only + .PHONY: srpm rpm + |