summaryrefslogtreecommitdiff
path: root/ioq3-r437/Makefile
diff options
context:
space:
mode:
authorTim Angus <tim@ngus.net>2005-12-10 02:56:06 +0000
committerTim Angus <tim@ngus.net>2005-12-10 02:56:06 +0000
commit08446c16acbbb9a9d12fccb21e27cfa29d076e77 (patch)
tree1dc6a6fd6c9baa4a56e01abb84601368b5de80a1 /ioq3-r437/Makefile
parent7ba4af6168b726759d45b8d9d95dbebe26aa3186 (diff)
* Branch upstream ioq3-r437 into trunk
Diffstat (limited to 'ioq3-r437/Makefile')
-rw-r--r--ioq3-r437/Makefile14
1 files changed, 14 insertions, 0 deletions
diff --git a/ioq3-r437/Makefile b/ioq3-r437/Makefile
new file mode 100644
index 00000000..9299fbe9
--- /dev/null
+++ b/ioq3-r437/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