mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2026-01-22 21:26:23 +00: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
|
|
|