aboutsummaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorRay Hogenson <rayhogenson@gmail.com>2012-01-10 15:34:34 -0900
committerRay Hogenson <rayhogenson@gmail.com>2012-01-10 15:34:34 -0900
commit6a4082406f71e40541602473bb0003fe3879fcdd (patch)
tree3fca53b15b55aa2a062d3d5db89ab82d6ebc90b1 /configure
parentMerge branch 'master' of github.com:rayhogenson/YetiHack (diff)
downloadyetihack-6a4082406f71e40541602473bb0003fe3879fcdd.tar.zst
Working yetihack
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