Added the linux release to README.md

This commit is contained in:
2015-05-17 09:28:37 +10:00
parent 99b35483f8
commit 661f6db82c
2 changed files with 5 additions and 4 deletions
+2 -1
View File
@@ -6,7 +6,8 @@ This game is inspired by classic 2D RPGs (Final Fantasy, The Legend of Zelda), a
## Releases ## 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 ## Documentation
+3 -3
View File
@@ -20,10 +20,10 @@ release: clean all package
#For use on my machine ONLY #For use on my machine ONLY
package: package:
ifeq ($(OS),Windows_NT) ifeq ($(OS),Windows_NT)
rar a -r -ep Tortuga.rar $(OUTDIR)/*.exe $(OUTDIR)/*.dll rar a -r -ep Tortuga-win.rar $(OUTDIR)/*.exe $(OUTDIR)/*.dll
rar a -r Tortuga.rar rsc/* copyright.txt instructions.txt rar a -r Tortuga-win.rar rsc/* copyright.txt instructions.txt
else ifeq ($(shell uname), Linux) 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 endif
$(OUTDIR): $(OUTDIR):