mirror of
https://github.com/UberGames/lilium-voyager.git
synced 2024-11-10 14:41:42 +00:00
12 lines
300 B
Makefile
12 lines
300 B
Makefile
VERSION=1.33_SVN$(shell LANG=C svnversion .)
|
|
|
|
release debug clean distclean:
|
|
$(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 distclean
|