over/build-all.sh

10 lines
148 B
Bash
Executable file

#! /bin/zsh
# encoding: utf-8
for dir in ag core m serial
do
echo "Building Cython implementations in ${dir}:"
cd "$dir"
./build.sh
cd ..
done