.PHONY: all
all: build

PYTHON ?= python

.PHONY: build
build:


.PHONY: install
install:


clean:
	rm -rf *.pyc

