Files
azerothcore-wotlk-pbot/bin/compiler/1-clean.sh
2016-06-27 16:40:47 +02:00

17 lines
196 B
Bash
Executable File

#!/bin/bash
. "defines.sh"
echo "Cleaning build files"
CWD=$(pwd)
cd $BUILDPATH
make -f Makefile clean
make clean
find -iname '*cmake*' -not -name CMakeLists.txt -exec rm -rf {} \+
cd $CWD