Initial commit (Cython implementation)

This commit is contained in:
Overwatch 2014-08-04 16:51:07 +02:00
commit 6f28ac0382
13 changed files with 1616 additions and 0 deletions

11
build.sh Executable file
View file

@ -0,0 +1,11 @@
#! /bin/zsh
# encoding: utf-8
for dir in src-[0-9][0-9]_*
do
echo "Building in ${dir}"
cd "$dir"
./build.sh
cd ..
ln -s $dir/*.so .
done