~free.ekanayaka/storm/any-expr

« back to all changes in this revision

Viewing changes to Makefile

  • Committer: Jamu Kakar
  • Date: 2009-08-08 01:14:34 UTC
  • mto: This revision was merged to the branch mainline in revision 325.
  • Revision ID: jkakar@kakar.ca-20090808011434-v9wkez4sy1wlojnx
- Renamed branch and bumped version to 0.15.
- New 'release' make target creates a tarball.

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
        # Run the tests once with cextensions and once without them.
22
22
        $(TEST_COMMAND) && STORM_CEXTENSIONS=1 $(TEST_COMMAND)
23
23
 
 
24
release:
 
25
        $(PYTHON) setup.py sdist --formats bztar
 
26
 
24
27
clean:
25
28
        rm -rf build
 
29
        rm -rf dist
 
30
        rm -rf storm.egg-info
26
31
        find . -name "*.so" -type f -exec rm -f {} \;
27
32
        find . -name "*.pyc" -type f -exec rm -f {} \;
28
33
        find . -name "*~" -type f -exec rm -f {} \;