~free.ekanayaka/storm/any-expr

« back to all changes in this revision

Viewing changes to Makefile

  • Committer: Andreas Hasenack
  • Date: 2008-11-19 18:22:29 UTC
  • mto: This revision was merged to the branch mainline in revision 284.
  • Revision ID: andreas@canonical.com-20081119182229-ow5vqejqsyaxm6zv
Added "clean" target to the Makefile

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
clean:
 
25
        rm -rf build
 
26
        find . -name "*.so" -type f -exec rm -f {} \;
 
27
        find . -name "*.pyc" -type f -exec rm -f {} \;
 
28
        find . -name "*~" -type f -exec rm -f {} \;
 
29
 
24
30
.PHONY: all build test