~free.ekanayaka/storm/any-expr

« back to all changes in this revision

Viewing changes to Makefile

  • Committer: James Henstridge
  • Date: 2009-10-21 09:44:32 UTC
  • mto: This revision was merged to the branch mainline in revision 334.
  • Revision ID: james@jamesh.id.au-20091021094432-wt6g6wk4ynca3n8c
Collapse set expressions with order_by set, and add some extra tests.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
PYTHON ?= python
2
 
PYDOCTOR ?= pydoctor
3
2
 
4
3
TEST_COMMAND = $(PYTHON) test
5
4
 
19
18
        $(PYTHON) setup.py build_ext -i
20
19
 
21
20
check: build
22
 
        # Run the tests once with C extensions and once without them.
23
 
        $(TEST_COMMAND) && STORM_CEXTENSIONS=0 $(TEST_COMMAND)
24
 
 
25
 
doc:
26
 
        $(PYDOCTOR) --make-html --html-output apidoc --add-package storm
 
21
        # Run the tests once with cextensions and once without them.
 
22
        $(TEST_COMMAND) && STORM_CEXTENSIONS=1 $(TEST_COMMAND)
27
23
 
28
24
release:
29
 
        $(PYTHON) setup.py sdist
 
25
        $(PYTHON) setup.py sdist --formats bztar
30
26
 
31
27
clean:
32
28
        rm -rf build