Skip to content

Commit

Permalink
add Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
Baris Metin committed Mar 4, 2013
1 parent d63b475 commit f61eb10
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions Makefile
@@ -0,0 +1,18 @@
PYTHON=python
PYTHONPATH=.

all: test install

.PHONY: test
test:
PYTHONPATH=$(PYTHONPATH) $(PYTHON) setup.py test

.PHONY: tests
tests: test

install:
$(PYTHON) setup.py install

.PHONY: clean
clean:
$(PYTHON) setup.py clean

0 comments on commit f61eb10

Please sign in to comment.