From 51cf6426bf2ec569d843418077af59e7080e7f3e Mon Sep 17 00:00:00 2001 From: Reid Spencer Date: Sun, 8 Jul 2007 03:50:22 +0000 Subject: [PATCH] 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 --- Makefile | 8 ++++++++ ModuleInfo.txt | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 7a9e7112e36..c61b7e5ef48 100644 --- a/Makefile +++ b/Makefile @@ -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 + diff --git a/ModuleInfo.txt b/ModuleInfo.txt index 4e43564466e..4d8a853d82c 100644 --- a/ModuleInfo.txt +++ b/ModuleInfo.txt @@ -1,2 +1,2 @@ -BuildTarget: tools-only DepModule: +BuildTarget: build-for-llvm-top