# pyspi *development* Makefile

all:
	python setup.py build_ext --inplace

clean:
# The following line should ideally clean everything, but it doesn't.
	python setup.py clean
#	For now we work around it.
	rm -f atspi.so atspi.o atspi.c MANIFEST
	rm -rf build dist
	
tarball:
	python setup.py sdist

rpm:
	python setup.py bdist_rpm

deb:
	dpkg-buildpackage -rfakeroot -us -uc

