Added copyright header to all C++ source files.
[oota-llvm.git] / Makefile
index 1e8d99c0b3caeeaacd3bf4db732024793da0bb7f..71534d16f04ab68fb795edd6e1ca53c983999db0 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,5 +1,5 @@
 LEVEL = .
-DIRS = support lib tools runtime
+DIRS = lib/Support utils lib tools runtime
 OPTIONAL_DIRS = projects
 
 include $(LEVEL)/Makefile.common
@@ -14,3 +14,12 @@ distclean:: clean
                          $(LEVEL)/config.log \
                          $(LEVEL)/TAGS
 
+AUTOCONF = autoconf
+AUTOHEADER = autoheader
+
+configure: autoconf/configure.ac autoconf/aclocal.m4
+       cd autoconf && $(AUTOCONF) -o ../configure configure.ac
+
+include/Config/config.h.in: autoconf/configure.ac autoconf/aclocal.m4
+       $(AUTOHEADER) -I autoconf autoconf/configure.ac
+