diff options
author | Tim Angus <tim@ngus.net> | 2005-12-10 03:18:48 +0000 |
---|---|---|
committer | Tim Angus <tim@ngus.net> | 2005-12-10 03:18:48 +0000 |
commit | e136e3aea478f1406ff304b8ed9e563a4b170f37 (patch) | |
tree | aea4544aa79d528583222edb2ca2c480ce60ea65 | |
parent | ef5d1d446e3c078b81882c2eda6525aee7ccfa1e (diff) |
* Copied ioq3 Makefile to trunk
-rw-r--r-- | Makefile | 14 |
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 |