~ubuntu-branches/ubuntu/precise/zeitgeist/precise-proposed

« back to all changes in this revision

Viewing changes to Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Didier Roche
  • Date: 2010-09-27 16:51:11 UTC
  • mfrom: (1.1.6 upstream)
  • Revision ID: james.westby@ubuntu.com-20100927165111-0rey8uwfo7dq9kgh
Tags: 0.5.2-0ubuntu1
* New upstream release:
  - Added a workaround so that events concerning OpenOffice.org are logged
    correctly (LP: #646724).

Show diffs side-by-side

added added

removed removed

Lines of Context:
62
62
        else \
63
63
                        echo A Bazaar branch is required to generate the ChangeLog >&2; \
64
64
        fi
 
65
 
 
66
# create API documentation
 
67
doc: all
 
68
        make -C doc/zeitgeist html
 
69
        
 
70
.PHONY: doc
 
71
 
 
72
# hook into the `make check` command to run the testsuite
 
73
# if the testsuite is not available (e.g. in the tarball) do nothing
 
74
# but printing a message
 
75
check-local:
 
76
        @if test -e "test/run-all-tests.py"; \
 
77
                then \
 
78
                        test/run-all-tests.py; \
 
79
        else \
 
80
                echo "Cannot run the testsuite, tests are not shipped"; \
 
81
        fi