add a method
[oota-llvm.git] / Makefile
index faeade4a3349838bd2f2fad5b07797b58356e43d..818128e8d73f4c1ce8e0012d2fd5035bcaefacbe 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -7,17 +7,25 @@
 # 
 #===------------------------------------------------------------------------===#
 LEVEL = .
-DIRS = lib/System lib/Support utils lib tools 
-
-ifneq ($(MAKECMDGOALS),tools-only)
-DIRS += runtime docs
-OPTIONAL_DIRS = examples projects
+DIRS = lib/System lib/Support utils lib
+
+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
@@ -32,8 +40,6 @@ debug-opt-prof:
        $(Verb) $(MAKE) ENABLE_PROFILING=1
 
 dist-hook::
-       $(Echo) Eliminating CVS directories from distribution
-       $(Verb) $(RM) -rf `find $(TopDistDir) -type d -name CVS -print`
        $(Echo) Eliminating files constructed by configure
        $(Verb) $(RM) -f \
          $(TopDistDir)/include/llvm/ADT/hash_map  \
@@ -43,8 +49,5 @@ dist-hook::
          $(TopDistDir)/include/llvm/Support/DataTypes.h  \
          $(TopDistDir)/include/llvm/Support/ThreadSupport.h
 
-check : 
-       $(MAKE) -C test check-dejagnu TESTSUITE=$(TESTSUITE)
-
 tools-only: all
-
+libs-only: all