mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2025-12-01 21:13:04 +08:00
17 lines
196 B
Bash
Executable File
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
|
|
|