summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Angus <tim@ngus.net>2005-12-10 03:18:48 +0000
committerTim Angus <tim@ngus.net>2005-12-10 03:18:48 +0000
commite136e3aea478f1406ff304b8ed9e563a4b170f37 (patch)
treeaea4544aa79d528583222edb2ca2c480ce60ea65
parentef5d1d446e3c078b81882c2eda6525aee7ccfa1e (diff)
* Copied ioq3 Makefile to trunk
-rw-r--r--Makefile14
1 files changed, 14 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 00000000..9299fbe9
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,14 @@
+VERSION=1.33_SVN$(shell LANG=C svnversion .)
+
+release debug clean distclean copyfiles installer:
+ $(MAKE) -C code/unix $@
+
+dist:
+ rm -rf quake3-$(VERSION)
+ svn export . quake3-$(VERSION)
+ which convert >/dev/null 2>&1 && convert web/images/thenameofthisprojectis3.jpg quake3-$(VERSION)/code/unix/setup/splash.xpm || true
+ rm -rf quake3-$(VERSION)/web
+ tar --force-local -cjf quake3-$(VERSION).tar.bz2 quake3-$(VERSION)
+ rm -rf quake3-$(VERSION)
+
+.PHONY: release debug clean distclean copyfiles installer