diff --git a/README.md b/README.md index e0ca88b..ba3d0d5 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,8 @@ This game is inspired by classic 2D RPGs (Final Fantasy, The Legend of Zelda), a ## Releases -The most recent stable build for Windows can be found [here](https://dl.dropboxusercontent.com/u/46669050/Tortuga.rar). +The most recent stable build for Windows can be found [here](https://dl.dropboxusercontent.com/u/46669050/Tortuga-win.rar). +The most recent stable build for Linux can be found [here](https://dl.dropboxusercontent.com/u/46669050/Tortuga-linux.tar). ## Documentation diff --git a/makefile b/makefile index d688c71..600f1a7 100644 --- a/makefile +++ b/makefile @@ -20,10 +20,10 @@ release: clean all package #For use on my machine ONLY package: ifeq ($(OS),Windows_NT) - rar a -r -ep Tortuga.rar $(OUTDIR)/*.exe $(OUTDIR)/*.dll - rar a -r Tortuga.rar rsc/* copyright.txt instructions.txt + rar a -r -ep Tortuga-win.rar $(OUTDIR)/*.exe $(OUTDIR)/*.dll + rar a -r Tortuga-win.rar rsc/* copyright.txt instructions.txt else ifeq ($(shell uname), Linux) - tar -C $(OUTDIR) -zcvf Tortuga.tar client server ../rsc ../copyright.txt ../instructions.txt + tar -C $(OUTDIR) -zcvf Tortuga-linux.tar client server ../rsc ../copyright.txt ../instructions.txt endif $(OUTDIR):