Index: Makefile.am
===================================================================
--- Makefile.am	(revision ad915e09922eebeb2d0724d3da45ebb698db76f7)
+++ Makefile.am	(revision 08ce416e36758f72c422ed161fb97b9477c4af70)
@@ -21,5 +21,5 @@
 
 SUBDIRS = driver src . @LIBCFA_TARGET_DIRS@
-DIST_SUBDIRS = driver src . libcfa benchmark longrun_tests tests tools tools/prettyprinter
+DIST_SUBDIRS = driver src . libcfa tests tools tools/prettyprinter
 
 @LIBCFA_TARGET_MAKEFILES@ : Makefile $(srcdir)/libcfa/configure
Index: configure.ac
===================================================================
--- configure.ac	(revision ad915e09922eebeb2d0724d3da45ebb698db76f7)
+++ configure.ac	(revision 08ce416e36758f72c422ed161fb97b9477c4af70)
@@ -3,5 +3,5 @@
 
 AC_PREREQ([2.68])
-AC_INIT([cfa-cc],[1.0.0.0],[cforall@plg.uwaterloo.ca])
+AC_INIT([cfa-cc],[1.0.0],[cforall@plg.uwaterloo.ca])
 AC_CONFIG_AUX_DIR([automake])
 AC_CONFIG_MACRO_DIRS([automake])
@@ -35,5 +35,5 @@
 		no)  newast=false; DEFAULT_NEW_AST="False" ;;
 		*) AC_MSG_ERROR([bad value ${enableval} for --enable-new-ast]) ;;
-	esac],[newast=false])
+	esac],[newast=true])
 AC_DEFINE_UNQUOTED([CFA_USE_NEW_AST], $newast)
 AC_SUBST(DEFAULT_NEW_AST)
@@ -139,4 +139,8 @@
 		\'--enable-gprofiler=*) ;;
 		\'--disable-gprofiler) ;;
+
+		# skip the target hosts
+		\'--enable-new-ast=*) ;;
+		\'--disable-new-ast) ;;
 
 		# skip this, it only causes problems
@@ -287,11 +291,17 @@
 	libcfa/Makefile:libcfa/Makefile.dist.in
 	tests/Makefile
-	longrun_tests/Makefile
-	benchmark/Makefile
-	benchmark/io/http/Makefile
 	tools/Makefile
 	tools/prettyprinter/Makefile
 	])
 
+# Some of our makefile don't need to be distributed
+AM_CONDITIONAL([CFORALL_DISTRIBUTE], [test -e $TOP_SRCDIR/autogen.sh])
+AM_COND_IF([CFORALL_DISTRIBUTE],
+	[AC_CONFIG_FILES([
+		longrun_tests/Makefile
+		benchmark/Makefile
+		benchmark/io/http/Makefile
+		])])
+
 AC_CONFIG_LINKS([tests/test.py:tests/test.py])
 
Index: libcfa/configure.ac
===================================================================
--- libcfa/configure.ac	(revision ad915e09922eebeb2d0724d3da45ebb698db76f7)
+++ libcfa/configure.ac	(revision 08ce416e36758f72c422ed161fb97b9477c4af70)
@@ -3,5 +3,5 @@
 
 AC_PREREQ([2.68])
-AC_INIT([cfa-cc],[1.0.0.0],[cforall@plg.uwaterloo.ca])
+AC_INIT([cfa-cc],[1.0.0],[cforall@plg.uwaterloo.ca])
 AC_CONFIG_AUX_DIR([automake])
 AC_CONFIG_MACRO_DIRS([automake])
Index: libcfa/src/Makefile.am
===================================================================
--- libcfa/src/Makefile.am	(revision ad915e09922eebeb2d0724d3da45ebb698db76f7)
+++ libcfa/src/Makefile.am	(revision 08ce416e36758f72c422ed161fb97b9477c4af70)
@@ -87,5 +87,7 @@
 # not all platforms support concurrency, add option do disable it
 inst_thread_headers_nosrc = \
+	bits/collection.hfa \
 	bits/random.hfa \
+	bits/sequence.hfa \
 	concurrency/clib/cfathread.h \
 	concurrency/invoke.h \
Index: src/AST/module.mk
===================================================================
--- src/AST/module.mk	(revision ad915e09922eebeb2d0724d3da45ebb698db76f7)
+++ src/AST/module.mk	(revision 08ce416e36758f72c422ed161fb97b9477c4af70)
@@ -59,4 +59,5 @@
 	AST/SymbolTable.cpp \
 	AST/SymbolTable.hpp \
+	AST/TranslationUnit.hpp \
 	AST/Type.cpp \
 	AST/Type.hpp \
Index: tests/Makefile.am
===================================================================
--- tests/Makefile.am	(revision ad915e09922eebeb2d0724d3da45ebb698db76f7)
+++ tests/Makefile.am	(revision 08ce416e36758f72c422ed161fb97b9477c4af70)
@@ -68,4 +68,5 @@
 .INTERMEDIATE: .validate .validate.cfa
 EXTRA_PROGRAMS = avl_test .dummy_hack # build but do not install
+EXTRA_DIST = pybin
 
 avl_test_SOURCES = avltree/avl_test.cfa avltree/avl0.cfa avltree/avl1.cfa avltree/avl2.cfa avltree/avl3.cfa avltree/avl4.cfa avltree/avl-private.cfa
