aboutsummaryrefslogtreecommitdiffstats
path: root/configure
blob: 246db38c4f0e1c7bcc6d355057dff521eff4e41c (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! No os specified"
	exit 1
fi
exit 0