summaryrefslogtreecommitdiff
path: root/projects
diff options
context:
space:
mode:
authorChandler Carruth <chandlerc@gmail.com>2013-06-24 07:21:35 +0000
committerChandler Carruth <chandlerc@gmail.com>2013-06-24 07:21:35 +0000
commitd77a0ca4934f9b2480ca80a26d95b21fc0c1aa3b (patch)
tree0d7bedd350a8d03c246541a3c09f29f0713b626e /projects
parentb26da887d61acc31fdd7cade24e1a029c2e6b354 (diff)
downloadllvm-d77a0ca4934f9b2480ca80a26d95b21fc0c1aa3b.tar.gz
llvm-d77a0ca4934f9b2480ca80a26d95b21fc0c1aa3b.tar.bz2
llvm-d77a0ca4934f9b2480ca80a26d95b21fc0c1aa3b.tar.xz
Filter out dragonegg when checked out into a projects subdirectory.
There is some hope of eventually supporting a unified build with it, but until then this lets me (and others) check it out in this location without things breaking. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@184697 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'projects')
-rw-r--r--projects/Makefile3
1 files changed, 3 insertions, 0 deletions
diff --git a/projects/Makefile b/projects/Makefile
index 1318a35d94..f00425f81e 100644
--- a/projects/Makefile
+++ b/projects/Makefile
@@ -20,6 +20,9 @@ DIRS := $(filter-out compiler-rt,$(DIRS))
# Don't build libcxx, it isn't designed to be built directly.
DIRS := $(filter-out libcxx,$(DIRS))
+# DragonEgg may be checked out here but doesn't (yet) build directly.
+DIRS := $(filter-out dragonegg,$(DIRS))
+
# Sparc cannot link shared libraries (libtool problem?)
ifeq ($(ARCH), Sparc)
DIRS := $(filter-out sample, $(DIRS))