summaryrefslogtreecommitdiff
path: root/Makefile
blob: b451ee994f5c09392b9682771707ad8252f1970a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
VERSION=1.1.0_SVN$(shell LANG=C svnversion .)

release debug clean distclean copyfiles installer:
	$(MAKE) -C src/unix $@

dist:
	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