Precompiled headers: initial support.
[oota-llvm.git] / tools / Makefile
index 4f0f54bdfbf84c1dd117880783beaba6e03231fd..c9b9ff231a6d8bec9a95a0221ecd2c6684e9b4f0 100644 (file)
@@ -19,9 +19,10 @@ DIRS := llvm-config
 PARALLEL_DIRS := opt llvm-as llvm-dis \
                  llc llvm-ranlib llvm-ar llvm-nm \
                  llvm-ld llvm-prof llvm-link \
-                 lli gccas gccld llvm-extract llvm-db \
+                 lli llvm-extract \
                  bugpoint llvm-bcanalyzer llvm-stub \
-                 llvm-mc llvmc
+                 llvm-mc llvmc \
+                 edis
 
 # Let users override the set of tools to build from the command line.
 ifdef ONLY_TOOLS
@@ -39,7 +40,7 @@ ifeq ($(ENABLE_PIC),1)
 endif
 
 # No support for lto / gold on windows targets
-ifeq ($(OS), $(filter $(OS), Cygwin MingW))
+ifeq ($(TARGET_OS), $(filter $(TARGET_OS), Cygwin MingW))
   DIRS := $(filter-out lto gold, $(DIRS))
 endif