Be a little more explicit about how to configure LLVM with the --prefix
[oota-llvm.git] / Makefile
index 4cbf53a8f07c9893d4745841299461e07856a2c0..9ed030e7fbdcefb69660bac3d1fc14a242d5b2f5 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,49 +1,52 @@
-##===- ./Makefile ------------------------------------------*- Makefile -*-===##
+#===- ./Makefile -------------------------------------------*- Makefile -*--===#
 # 
 #                     The LLVM Compiler Infrastructure
 #
 # This file was developed by the LLVM research group and is distributed under
 # the University of Illinois Open Source License. See LICENSE.TXT for details.
 # 
-##===----------------------------------------------------------------------===##
+#===------------------------------------------------------------------------===#
 LEVEL = .
-DIRS = lib/Support utils lib tools 
-OPTIONAL_DIRS = projects
+DIRS = lib/System lib/Support utils lib tools 
 
 ifneq ($(MAKECMDGOALS),tools-only)
-DIRS += runtime
+DIRS += runtime docs
+OPTIONAL_DIRS = examples projects
 endif
 
-include $(LEVEL)/Makefile.common
+EXTRA_DIST := test llvm.spec include
 
-test :: all
-       cd test; $(MAKE)
+include $(LEVEL)/Makefile.common
 
-distclean:: clean
-       $(VERB) $(RM) -rf $(LEVEL)/Makefile.config \
-                         $(LEVEL)/include/Config/config.h \
-                         $(LEVEL)/autoconf/autom4te.cache \
-                         $(LEVEL)/config.log \
-                         $(LEVEL)/TAGS
+.PHONY: debug-opt-prof
+debug-opt-prof:
+       $(Echo) Building Debug Version
+       $(Verb) $(MAKE)
+       $(Echo)
+       $(Echo) Building Optimized Version
+       $(Echo)
+       $(Verb) $(MAKE) ENABLE_OPTIMIZED=1
+       $(Echo)
+       $(Echo) Building Profiling Version
+       $(Echo)
+       $(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  \
+         $(TopDistDir)/include/llvm/ADT/hash_set  \
+         $(TopDistDir)/include/llvm/ADT/iterator  \
+         $(TopDistDir)/include/llvm/Config/config.h  \
+         $(TopDistDir)/include/llvm/Support/DataTypes.h  \
+         $(TopDistDir)/include/llvm/Support/ThreadSupport.h
+
+check :: 
+       $(MAKE) -C test
 
 tools-only: all
 
-# Install support for llvm include files:
-.PHONY: install-includes
-
-install-includes:
-       $(MKDIR) $(includedir)/llvm
-       cd include && find * '!' '(' -name '*~' -o -name .cvsignore ')' -print | grep -v CVS | pax -rwdvpe $(DESTDIR)$(includedir)/llvm
-
-install:: install-includes
-
-# Build tags database for Emacs/Xemacs:
-.PHONY: tags
-
-TAGS: tags
-
-all:: tags
-
-tags:
-       $(ETAGS) $(ETAGSFLAGS) `find $(wildcard $(SourceDir)/include $(SourceDir)/lib $(SourceDir)/tools) -name '*.cpp' -o -name '*.h'`
-
+check-dejagnu:
+       $(MAKE) -C test check-dejagnu TESTSUITE=$(TESTSUITE)