aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile12
1 files changed, 12 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..35d5977
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,12 @@
+VERSION=1.32b_ioSVNr$(shell LANG=C svnversion .)
+
+release debug clean:
+ $(MAKE) -C code/unix $@
+
+dist:
+ rm -rf quake3-$(VERSION)
+ svn export . quake3-$(VERSION)
+ tar --force-local -cjf quake3-$(VERSION).tar.bz2 quake3-$(VERSION)
+ rm -rf quake3-$(VERSION)
+
+.PHONY: release debug clean