Imported core, m, ag and serial for refactoring

This commit is contained in:
Overwatch 2014-08-05 10:19:01 +02:00
parent 6f28ac0382
commit 5baa9b75d0
25 changed files with 918 additions and 4 deletions

10
build-all.sh Executable file
View file

@ -0,0 +1,10 @@
#! /bin/zsh
# encoding: utf-8
for dir in ag core m serial
do
echo "Building in ${dir}"
cd "$dir"
./build.sh
cd ..
done