#!/bin/bash if [ -f $GIT_DIR/../app/Makefile ]; then cd "$GIT_DIR/../app" make clean || exit 0 else echo "No Makefile found." 1>&2 exit 1 fi