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

llvm-svn: 30193
This commit is contained in:
Chris Lattner 2006-09-08 18:08:50 +00:00
parent dc7b51910b
commit eda4a9e008
1 changed files with 4 additions and 0 deletions

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