From: Chris Lattner Date: Wed, 18 Sep 2002 03:25:58 +0000 (+0000) Subject: Compile sub-directories in parallel, because they don't have interdependencies X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=ec9962e44a8657ad1a60756d70079c715c007784;p=oota-llvm.git Compile sub-directories in parallel, because they don't have interdependencies git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3808 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Makefile b/lib/Makefile index c778d219d6e..73caa73b85d 100644 --- a/lib/Makefile +++ b/lib/Makefile @@ -1,6 +1,6 @@ LEVEL = .. -DIRS = VMCore Analysis Transforms AsmParser Bytecode Support CodeGen Target CWriter Reoptimizer +PARALLEL_DIRS = VMCore Analysis Transforms AsmParser Bytecode Support CodeGen Target CWriter Reoptimizer include $(LEVEL)/Makefile.common diff --git a/tools/Makefile b/tools/Makefile index bf5852b8578..2570e7f58b7 100644 --- a/tools/Makefile +++ b/tools/Makefile @@ -1,5 +1,5 @@ LEVEL = .. -DIRS = as dis opt gccas llc link lli gccld analyze extract +PARALLEL_DIRS = as dis opt gccas llc link lli gccld analyze extract include $(LEVEL)/Makefile.common