ConstantPointerRef's are no longer emitted. This saves 20028 bytes in the
[oota-llvm.git] / Makefile
index 735ba5fe0ccccb0fe8033c6e2b4b804e1c40044e..a3fc51f1c88d1671a4debd566b6d765eeafd8a41 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,3 +1,11 @@
+##===- ./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 runtime
 OPTIONAL_DIRS = projects
@@ -14,3 +22,22 @@ distclean:: clean
                          $(LEVEL)/config.log \
                          $(LEVEL)/TAGS
 
+tools-only:
+       @for dir in lib/Support utils lib tools; do $(MAKE) -C $$dir; done
+
+configure: autoconf/configure.ac autoconf/aclocal.m4
+       cd autoconf && aclocal && autoconf -o ../configure configure.ac
+
+include/Config/config.h.in: autoconf/configure.ac autoconf/aclocal.m4
+       autoheader -I autoconf autoconf/configure.ac
+
+# 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 $(includedir)/llvm
+
+install:: install-includes
+