default: install

all : install

build: 
	python setup.py build

install:  build
	python setup.py install

clean: 
	python setup.py clean
	rm -fr build
