Don't build the runtime library if LLVMGCC is not configured.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30691 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Reid Spencer 2006-10-02 19:10:56 +00:00
parent b56371edbc
commit 76907e3daf

View File

@ -7,4 +7,9 @@
LEVEL = ..
DIRS = compiler runtime
# Don't generate the runtime if we don't have LLVMGCC
ifeq ($(LLVMGCC),)
DIRS := $(filter-out runtime, $(DIRS))
endif
include $(LEVEL)/Makefile.common