9 lines
313 B
Bash
Executable file
9 lines
313 B
Bash
Executable file
#!/bin/bash
|
|
|
|
printf "\n============================================[ Building Library ]============================================\n\n"
|
|
\cp -r ../extra/* ./
|
|
if [ "$(expr substr $(uname -s) 1 5)" == "Linux" ]; then
|
|
make
|
|
elif [ "$(expr substr $(uname -s) 1 10)" == "MINGW64_NT" ]; then
|
|
mingw32-make.exe
|
|
fi
|