| 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 | e8ee9b2 | 2004-10-28 03:53:02 +0000 | [diff] [blame] | 11 | PARALLEL_DIRS := llvm-as llvm-dis opt gccas llc llvm-link lli gccld llvm-stub \ | 
| Reid Spencer | 0306c68 | 2004-12-17 01:46:41 +0000 | [diff] [blame] | 12 | analyze extract llvm-nm llvm-prof llvm-ar llvm-ranlib \ | 
| Reid Spencer | 120aa08 | 2004-12-17 07:59:53 +0000 | [diff] [blame] | 13 | llvm-bcanalyzer llvmc llvm-ld llvm-db bugpoint | 
|  | 14 |  | 
|  | 15 | include $(LEVEL)/Makefile.config | 
| Reid Spencer | 0306c68 | 2004-12-17 01:46:41 +0000 | [diff] [blame] | 16 |  | 
|  | 17 | # The bugpoint and llvm-db tools are not portable to Win32 because they depend | 
|  | 18 | # on fork(2) behavior that Win32 doesn't have. At some point they'll be | 
|  | 19 | # rewritten to not depend on fork at which time they should be added back to | 
|  | 20 | # the list above. | 
| Reid Spencer | 948499e | 2004-12-31 22:56:14 +0000 | [diff] [blame] | 21 | ifneq ($(LLVM_ON_UNIX),1) | 
| Reid Spencer | 120aa08 | 2004-12-17 07:59:53 +0000 | [diff] [blame] | 22 | PARALLEL_DIRS := $(filter-out bugpoint llvm-db,$(PARALLEL_DIRS)) | 
| Reid Spencer | 0306c68 | 2004-12-17 01:46:41 +0000 | [diff] [blame] | 23 | endif | 
| Misha Brukman | 01592c2 | 2004-09-13 01:18:30 +0000 | [diff] [blame] | 24 |  | 
| Reid Spencer | 0e48bf8 | 2005-01-16 02:21:29 +0000 | [diff] [blame^] | 25 | include $(LLVM_SRC_ROOT)/Makefile.rules |