Skip to content

Commit

Permalink
Merge pull request #30 from hartwork/makefile
Browse files Browse the repository at this point in the history
Add convenience Makefile
  • Loading branch information
ralphbean committed Sep 23, 2013
2 parents 683f672 + 8d3f3e0 commit 156bc89
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 0 deletions.
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
include README.rst
include LICENSE
include Makefile
recursive-include tests *
23 changes: 23 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Copyright (C) 2013 Sebastian Pipping <sebastian@pipping.org>
# Licensed under GPL v3 or later

DESTDIR = /
SETUP_PY = ./setup.py

all:
$(SETUP_PY) build

check:
$(SETUP_PY) check
$(SETUP_PY) test

clean:
$(SETUP_PY) clean

dist:
$(SETUP_PY) sdist

install:
$(SETUP_PY) install --root '$(DESTDIR)'

.PHONY: all check clean dist install

0 comments on commit 156bc89

Please sign in to comment.