add toplevel Makefile

This commit is contained in:
Ludwig Nussel 2005-08-28 10:40:28 +00:00
parent 8b1d93b397
commit 95814311c3
1 changed files with 12 additions and 0 deletions

12
Makefile Normal file
View File

@ -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