Need to include Makefile.config to get the value of $(OS). Add a comment.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30193 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2006-09-08 18:08:50 +00:00
parent 294492b25f
commit 70c3537a92

View File

@ -19,6 +19,10 @@ PARALLEL_DIRS := llvm-config \
gccas llvm-bcanalyzer llvm-stub \
gccld llvm2cpp \
llvm-ld llvmc llvm-prof
include $(LEVEL)/Makefile.common
# Disable liblto on non-darwin platforms right now until LLVM is built PIC.
ifeq ($(OS), Darwin)
PARALLEL_DIRS += lto
endif