aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
blob: ad465f15a0534472ef177d12d8c5390228a74d24 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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)
	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