blob: 856ff9cfbd9c0b6ce7b11d5864f6f7c574595ce0 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
if [[ "$1" == "linux" ]]; then
cp os/linux/Makefile ./
elif [[ "$1" == "windows" ]]; then
cp os/windows/Makefile ./
else
echo "Error! Please use an os in the os folder (not debian)"
exit 1
fi
exit 0
|