#!/bin/sh
if [ -d src ]; then
  find src -type f \( -name '*.o' -o -name '*.so' -o -name '*.dll' \) -exec rm -f {} +
fi
