aboutsummaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure9
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