Add EXTRA_DIST for additional files to be distributed.
[oota-llvm.git] / tools / Makefile
index 2a1c1f37760c2cb3d70ba88100ce5e70b6d32400..7f872cc61a4ab4a1ef8fd7a4b0434b53a063543e 100644 (file)
@@ -1,6 +1,23 @@
+##===- tools/Makefile --------------------------------------*- Makefile -*-===##
+# 
+#                     The LLVM Compiler Infrastructure
+#
+# This file was developed by the LLVM research group and is distributed under
+# the University of Illinois Open Source License. See LICENSE.TXT for details.
+# 
+##===----------------------------------------------------------------------===##
+
 LEVEL := ..
-PARALLEL_DIRS := as llvm-as dis llvm-dis opt gccas llc link lli gccld \
-                 analyze extract bugpoint llvm-ar
+PARALLEL_DIRS := llvmc llvm-as llvm-dis opt gccas llc llvm-link lli gccld \
+                 llvm-stub analyze extract bugpoint llvm-nm llvm-prof llvm-db \
+                 llvm-ar llvm-bcanalyzer llee
 
-include $(LEVEL)/Makefile.common
+EXTRA_DIST := Makefile.JIT
+
+include $(LEVEL)/Makefile.config
 
+ifeq ($(ARCH), Sparc)
+PARALLEL_DIRS := $(filter-out llee, $(PARALLEL_DIRS))
+endif
+
+include $(LEVEL)/Makefile.common