#! /bin/bash
if [ -z "$1" ] || [ $# -eq 0 ]
then
make -C build config=Debug clean && make config=Release clean
else
make -C build config=$1 clean
fi