# Dummy Makefile for the python module.



# Targets
all:
	python setup.py build

clean:
	rm -rf build

install:
	python setup.py install



