From d28c9b3a4178a8d653dc479d385f60969c241bdb Mon Sep 17 00:00:00 2001 From: Tim Angus Date: Sat, 10 Dec 2005 20:19:52 +0000 Subject: * s/Quake III Arena source code/Tremulous/ * De-quaked various bits and pieces * Integrated Tremulous into the ioq3 source * Relicensed Tremulous to be GPL * It compiles!!!!!!!!11111111!!!!1 --- Makefile | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 9299fbe9..b451ee99 100644 --- a/Makefile +++ b/Makefile @@ -1,14 +1,13 @@ -VERSION=1.33_SVN$(shell LANG=C svnversion .) +VERSION=1.1.0_SVN$(shell LANG=C svnversion .) release debug clean distclean copyfiles installer: - $(MAKE) -C code/unix $@ + $(MAKE) -C src/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) + rm -rf tremulous-$(VERSION) + svn export . tremulous-$(VERSION) + which convert >/dev/null 2>&1 && convert web/images/thenameofthisprojectis3.jpg tremulous-$(VERSION)/code/unix/setup/splash.xpm || true + tar --force-local -cjf tremulous-$(VERSION).tar.bz2 tremulous-$(VERSION) + rm -rf tremulous-$(VERSION) .PHONY: release debug clean distclean copyfiles installer -- cgit