2003-10-20 22:28:01 +00:00
|
|
|
##===- projects/Makefile ------------------------------*- Makefile -*-===##
|
|
|
|
#
|
|
|
|
# The LLVM Compiler Infrastructure
|
|
|
|
#
|
2007-12-29 20:11:13 +00:00
|
|
|
# This file is distributed under the University of Illinois Open Source
|
|
|
|
# License. See LICENSE.TXT for details.
|
2003-10-20 22:28:01 +00:00
|
|
|
#
|
|
|
|
##===----------------------------------------------------------------------===##
|
2003-06-30 22:12:19 +00:00
|
|
|
LEVEL=..
|
|
|
|
|
2003-11-25 20:37:45 +00:00
|
|
|
include $(LEVEL)/Makefile.config
|
|
|
|
|
2008-06-24 13:01:57 +00:00
|
|
|
# Compile all subdirs, except for the test suite, which lives in test-suite.
|
|
|
|
# Before 2008.06.24 it lived in llvm-test, so exclude that as well for now.
|
|
|
|
DIRS:= $(filter-out llvm-test test-suite,$(patsubst $(PROJ_SRC_DIR)/%/Makefile,%,$(wildcard $(PROJ_SRC_DIR)/*/Makefile)))
|
2003-06-30 22:12:19 +00:00
|
|
|
|
2010-09-09 15:49:32 +00:00
|
|
|
# Don't build compiler-rt, it isn't designed to be built directly.
|
2010-01-18 17:52:28 +00:00
|
|
|
DIRS := $(filter-out compiler-rt,$(DIRS))
|
|
|
|
|
2010-09-09 15:49:32 +00:00
|
|
|
# Don't build libcxx, it isn't designed to be built directly.
|
|
|
|
DIRS := $(filter-out libcxx,$(DIRS))
|
|
|
|
|
2013-06-24 07:21:35 +00:00
|
|
|
# DragonEgg may be checked out here but doesn't (yet) build directly.
|
|
|
|
DIRS := $(filter-out dragonegg,$(DIRS))
|
|
|
|
|
2005-01-16 02:21:29 +00:00
|
|
|
include $(PROJ_SRC_ROOT)/Makefile.rules
|