Files
2011-06-29 21:01:19 +00:00

15 lines
178 B
Makefile

all: build
build:
python setup.py build
install:
python setup.py install
dist:
python setup.py sdist
clean:
rm -f `find . -name "*.pyc" -o -name "*~"`
rm -rf dist build