[llvm-commits] CVS: llvm/tools/Makefile

Chris Lattner lattner at cs.uiuc.edu
Thu Dec 5 21:54:05 PST 2002


Changes in directory llvm/tools:

Makefile updated: 1.16 -> 1.17

---
Log message:

Only build jello when compiling on X86


---
Diffs of the changes:

Index: llvm/tools/Makefile
diff -u llvm/tools/Makefile:1.16 llvm/tools/Makefile:1.17
--- llvm/tools/Makefile:1.16	Wed Nov 20 16:28:18 2002
+++ llvm/tools/Makefile	Thu Dec  5 21:53:40 2002
@@ -1,5 +1,14 @@
-LEVEL = ..
-PARALLEL_DIRS = as dis opt gccas llc link lli gccld analyze extract jello bugpoint
+LEVEL := ..
+PARALLEL_DIRS := as dis opt gccas llc link lli gccld analyze extract bugpoint
 
 include $(LEVEL)/Makefile.common
+
+ifeq ($(ARCH),x86)
+# Only build jello when we are on X86
+all     :: jello/.makeall
+install :: jello/.makeinstall
+clean   :: jello/.makeclean
+endif
+
+
 





More information about the llvm-commits mailing list