#!/bin/bash set -eu for dir in ./pure-python ./cython ./shedskin do ( cd "$dir" && make clean ) done