Chris Lattner | 144992e | 2004-01-05 05:28:15 +0000 | [diff] [blame] | 1 | ##===- tools/Makefile --------------------------------------*- Makefile -*-===## |
John Criswell | abe5cdc | 2003-10-20 22:29:16 +0000 | [diff] [blame] | 2 | # |
| 3 | # The LLVM Compiler Infrastructure |
| 4 | # |
| 5 | # This file was developed by the LLVM research group and is distributed under |
| 6 | # the University of Illinois Open Source License. See LICENSE.TXT for details. |
| 7 | # |
| 8 | ##===----------------------------------------------------------------------===## |
Chris Lattner | 144992e | 2004-01-05 05:28:15 +0000 | [diff] [blame] | 9 | |
Chris Lattner | 71b82e3 | 2002-12-06 03:53:40 +0000 | [diff] [blame] | 10 | LEVEL := .. |
Reid Spencer | 3376c6d | 2006-08-23 00:12:11 +0000 | [diff] [blame^] | 11 | # Note .. the tools are organized in triples consisting of one large and two |
| 12 | # small executables. This is done to minimize memory load in parallel builds. |
| 13 | # Please retain this ordering. |
| 14 | PARALLEL_DIRS := llvm-config \ |
| 15 | opt llvm-as llvm-dis \ |
| 16 | llc llvm-ranlib llvm-ar \ |
| 17 | lli llvm-link llvm-nm \ |
| 18 | bugpoint llvm-db llvm-extract \ |
| 19 | gccas llvm-bcanalyzer llvm-stub \ |
| 20 | gccld llvm2cpp \ |
| 21 | llvm-ld llvmc llvm-prof |
Reid Spencer | c3b9370 | 2006-05-30 21:20:55 +0000 | [diff] [blame] | 22 | |
Reid Spencer | 1df84eb | 2006-05-17 21:20:50 +0000 | [diff] [blame] | 23 | include $(LEVEL)/Makefile.common |