~didrocks/ubuntuone-client/dont-suffer-zg-crash

« back to all changes in this revision

Viewing changes to Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Rodney Dawes
  • Date: 2011-01-25 16:42:52 UTC
  • mto: This revision was merged to the branch mainline in revision 64.
  • Revision ID: james.westby@ubuntu.com-20110125164252-rl1pybasx1nsqgoy
Tags: upstream-1.5.3
ImportĀ upstreamĀ versionĀ 1.5.3

Show diffs side-by-side

added added

removed removed

Lines of Context:
14
14
        ubuntuone/platform              \
15
15
        ubuntuone/platform/linux        \
16
16
        ubuntuone/platform/windows      \
 
17
        ubuntuone/status                \
17
18
        ubuntuone/syncdaemon/fsm        \
18
19
        ubuntuone/syncdaemon            \
19
20
        ubuntuone/u1sync                \
26
27
        bin/u1sdtool                    \
27
28
        bin/u1sync
28
29
 
29
 
libexec_SCRIPTS =                       \
 
30
libexec_SCRIPTS =                       \
30
31
        bin/ubuntuone-syncdaemon        \
31
32
        bin/ubuntuone-login
32
33
 
57
58
        $(MAKE) -C data logging.conf
58
59
 
59
60
lint: pylintrc $(clientdefs_DATA) Makefile
60
 
        PYTHONPATH="$(PYTHONPATH)" SRCDIR="$(srcdir)" USE_PYFLAKES="true" \
61
 
        $(PYTHON) $(srcdir)/contrib/pylint-wrapper
 
61
        PYTHONPATH="$(PYTHONPATH)" SRCDIR="$(srcdir)" USE_PYFLAKES="true" u1lint
62
62
 
63
63
test: logging.conf $(clientdefs_DATA) Makefile
64
64
        echo "$(PYTHONPATH)"
65
65
        if test "x$(builddir)" == "x$(srcdir)"; then \
66
 
                PYTHONPATH="$(PYTHONPATH)" $(PYTHON) $(srcdir)/contrib/test; \
 
66
                PYTHONPATH="$(PYTHONPATH)" u1trial tests; \
67
67
        fi
68
68
        rm -rf _trial_temp
69
69
 
70
70
test-coverage: logging.conf $(clientdefs_DATA) Makefile
71
71
        if test "x$(builddir)" == "x$(srcdir)"; then \
72
 
                PYTHONPATH="$(PYTHONPATH)" coverage run $(srcdir)/contrib/test; \
 
72
                PYTHONPATH="$(PYTHONPATH)" u1trial -c tests; \
73
73
        fi
74
 
        coverage xml
75
74
        rm -rf _trial_temp
76
75
 
77
76
check: lint test Makefile
92
91
                (cd tests && $(LNDIR) $(srcdir)/../tests > /dev/null); \
93
92
        fi
94
93
 
95
 
all-local: pylintrc $(clientdefs_DATA)
 
94
all-local: pylintrc logging.conf $(clientdefs_DATA)
96
95
 
97
96
sd_path = ubuntuone/syncdaemon
98
97