
all:

install:
	if test -x /usr/bin/python; then \
		./setup.py install --prefix=$(prefix); \
	else \
	echo "Python not found, not installing speechd module"; \
	fi

uninstall:

clean:
	rm -f *.pyc

distclean: clean

distdir:


check:

