#!/bin/sh
find . -name '*.o' -type f -print | xargs rm -f
find . -name '.makepp' -type d -print | xargs rm -rf

