# -*- Makefile -*-

# $Format: "PROJECT = $Project$"$
PROJECT = pyano
# $Format: "VERSION = $ProjectVersion$"$
VERSION = 0.4

all:

clean:
	find -name '*.pyc' |xargs rm -f
dist: clean
	shtool tarball -d $(PROJECT)-$(VERSION) -c gzip --exclude pyano.conf -o ../$(PROJECT)-$(VERSION).tar.gz .
