10 lines
147 B
Bash
Executable file
10 lines
147 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
|