~didrocks/ubuntuone-client/use_result_var

« back to all changes in this revision

Viewing changes to Makefile.in

  • Committer: Bazaar Package Importer
  • Author(s): Rodney Dawes
  • Date: 2011-01-25 16:42:52 UTC
  • mfrom: (1.1.43 upstream)
  • Revision ID: james.westby@ubuntu.com-20110125164252-gyx1hii7jk1b3hw7
Tags: 1.5.3-0ubuntu1
* New upstream release.
  - Metadata load is too slow (LP: #436612)
  - Out of space dialog is broken (LP: #650671)
  - Should not autoconnect when there are no credentials (LP: #701588)
  - gsd extension should not ask for sso credentials (LP: #702171) 

Show diffs side-by-side

added added

removed removed

Lines of Context:
327
327
        ubuntuone/platform              \
328
328
        ubuntuone/platform/linux        \
329
329
        ubuntuone/platform/windows      \
 
330
        ubuntuone/status                \
330
331
        ubuntuone/syncdaemon/fsm        \
331
332
        ubuntuone/syncdaemon            \
332
333
        ubuntuone/u1sync                \
993
994
        $(MAKE) -C data logging.conf
994
995
 
995
996
lint: pylintrc $(clientdefs_DATA) Makefile
996
 
        PYTHONPATH="$(PYTHONPATH)" SRCDIR="$(srcdir)" USE_PYFLAKES="true" \
997
 
        $(PYTHON) $(srcdir)/contrib/pylint-wrapper
 
997
        PYTHONPATH="$(PYTHONPATH)" SRCDIR="$(srcdir)" USE_PYFLAKES="true" u1lint
998
998
 
999
999
test: logging.conf $(clientdefs_DATA) Makefile
1000
1000
        echo "$(PYTHONPATH)"
1001
1001
        if test "x$(builddir)" == "x$(srcdir)"; then \
1002
 
                PYTHONPATH="$(PYTHONPATH)" $(PYTHON) $(srcdir)/contrib/test; \
 
1002
                PYTHONPATH="$(PYTHONPATH)" u1trial tests; \
1003
1003
        fi
1004
1004
        rm -rf _trial_temp
1005
1005
 
1006
1006
test-coverage: logging.conf $(clientdefs_DATA) Makefile
1007
1007
        if test "x$(builddir)" == "x$(srcdir)"; then \
1008
 
                PYTHONPATH="$(PYTHONPATH)" coverage run $(srcdir)/contrib/test; \
 
1008
                PYTHONPATH="$(PYTHONPATH)" u1trial -c tests; \
1009
1009
        fi
1010
 
        coverage xml
1011
1010
        rm -rf _trial_temp
1012
1011
 
1013
1012
check: lint test Makefile
1028
1027
                (cd tests && $(LNDIR) $(srcdir)/../tests > /dev/null); \
1029
1028
        fi
1030
1029
 
1031
 
all-local: pylintrc $(clientdefs_DATA)
 
1030
all-local: pylintrc logging.conf $(clientdefs_DATA)
1032
1031
 
1033
1032
u1fsfsm: $(srcdir)/ubuntuone/syncdaemon/u1fsfsm.ods
1034
1033
        PYTHONPATH=$(PYTHONPATH) \