Added the "package" target to the root makefile

This commit is contained in:
Kayne Ruse
2014-08-19 04:11:12 +10:00
parent dfe8c108de
commit 8bc1326fef
2 changed files with 21 additions and 1 deletions
+6 -1
View File
@@ -19,7 +19,12 @@ debug: export CXXFLAGS+=-g
debug: clean all
release: export CXXFLAGS+=-static-libgcc -static-libstdc++
release: clean all
release: clean all package
#For use on my machine ONLY
package:
rar a -r -ep Tortuga.rar out/*.exe out/*.dll
rar a -r Tortuga.rar rsc/* copyright.txt
$(OUTDIR):
mkdir $(OUTDIR)