#!/bin/bash

dir_list=( "dnsmasq-precise" "apache-hadoop-hdfs1.0.4-precise" "tachyon-dev" )

# NOTE: the order matters but this is the right one
for i in ${dir_list[@]}; do
	echo building $i;
	cd $i;
	cat build;
	. build;
	cd ..;
done
