From: Reid Spencer Date: Tue, 6 Feb 2007 18:51:28 +0000 (+0000) Subject: Set the new NO_INSTALL flag for build-only tools. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=c9c1787907d247f4df9ed08f5937dea199e1750c;p=oota-llvm.git Set the new NO_INSTALL flag for build-only tools. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@33967 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/utils/Makefile b/utils/Makefile index 667ccbbb78c..08d073b1f39 100644 --- a/utils/Makefile +++ b/utils/Makefile @@ -8,7 +8,7 @@ ##===----------------------------------------------------------------------===## LEVEL = .. -DIRS = TableGen fpcmp PerfectShuffle +PARALLEL_DIRS := TableGen fpcmp PerfectShuffle EXTRA_DIST := cgiplotNLT.pl check-each-file codegen-diff countloc.sh cvsupdate \ DSAclean.py DSAextract.py emacs findsym.pl GenLibDeps.pl \ diff --git a/utils/PerfectShuffle/Makefile b/utils/PerfectShuffle/Makefile index d8d3dd6c675..2f29573137f 100644 --- a/utils/PerfectShuffle/Makefile +++ b/utils/PerfectShuffle/Makefile @@ -9,5 +9,6 @@ LEVEL = ../.. TOOLNAME = llvm-PerfectShuffle +NO_INSTALL = 1 include $(LEVEL)/Makefile.common diff --git a/utils/TableGen/Makefile b/utils/TableGen/Makefile index 64e24e07b59..5b93bf2e54f 100644 --- a/utils/TableGen/Makefile +++ b/utils/TableGen/Makefile @@ -9,6 +9,7 @@ LEVEL = ../.. TOOLNAME = tblgen +NO_INSTALL = 1; USEDLIBS = LLVMSupport.a LLVMSystem.a EXTRA_DIST = FileLexer.cpp.cvs FileLexer.l.cvs \ FileParser.cpp.cvs FileParser.h.cvs FileParser.y.cvs diff --git a/utils/fpcmp/Makefile b/utils/fpcmp/Makefile index 6e12739ac88..234af089cfd 100644 --- a/utils/fpcmp/Makefile +++ b/utils/fpcmp/Makefile @@ -10,6 +10,7 @@ LEVEL = ../.. TOOLNAME = fpcmp USEDLIBS = LLVMSupport.a LLVMSystem.a +NO_INSTALL = 1 include $(LEVEL)/Makefile.common