diff options
Diffstat (limited to 'configure')
| -rwxr-xr-x | configure | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/configure b/configure new file mode 100755 index 0000000..246db38 --- /dev/null +++ b/configure @@ -0,0 +1,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 |
