Update Visual Studio projects for removed file.
[oota-llvm.git] / Makefile
index 4c6f7097fd9f25a9cd134a9724aab10a60e78e40..818128e8d73f4c1ce8e0012d2fd5035bcaefacbe 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -7,17 +7,25 @@
 # 
 #===------------------------------------------------------------------------===#
 LEVEL = .
-DIRS = lib/System lib/Support utils lib tools 
+DIRS = lib/System lib/Support utils lib
 
-ifneq ($(MAKECMDGOALS),tools-only)
-DIRS += runtime docs
-OPTIONAL_DIRS = examples projects
+ifeq ($(MAKECMDGOALS),tools-only)
+DIRS += tools
+else
+  ifneq ($(MAKECMDGOALS),libs-only)
+    DIRS += tools runtime docs
+    OPTIONAL_DIRS = examples projects
+  endif
 endif
 
 EXTRA_DIST := test llvm.spec include
 
 include $(LEVEL)/Makefile.common
 
+# Specify options to pass to configure script when we're
+# running the dist-check target
+DIST_CHECK_CONFIG_OPTIONS = --with-llvmgccdir=$(LLVMGCCDIR)
+
 .PHONY: debug-opt-prof
 debug-opt-prof:
        $(Echo) Building Debug Version
@@ -41,7 +49,5 @@ dist-hook::
          $(TopDistDir)/include/llvm/Support/DataTypes.h  \
          $(TopDistDir)/include/llvm/Support/ThreadSupport.h
 
-check : 
-       $(MAKE) -C test check TESTSUITE=$(TESTSUITE)
-
 tools-only: all
+libs-only: all