~jimbaker/pyjuju/debug-relation-hook-context

« back to all changes in this revision

Viewing changes to Makefile

  • Committer: Gustavo Niemeyer
  • Date: 2011-09-15 19:07:58 UTC
  • mto: This revision was merged to the branch mainline in revision 349.
  • Revision ID: gustavo@niemeyer.net-20110915190758-urkce80d36yshsdd
Migrating top-level metadata.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
PEP8=pep8
2
 
COVERAGE_FILES=`find ensemble -name "*py" | grep -v "tests\|lib/mocker.py\|lib/testing.py"`
 
2
COVERAGE_FILES=`find juju -name "*py" | grep -v "tests\|lib/mocker.py\|lib/testing.py"`
3
3
 
4
4
all:
5
5
        @echo "You've just watched the fastest build on earth."
20
20
        ./test --functional
21
21
 
22
22
tags:
23
 
        @ctags --python-kinds=-iv -R ensemble
 
23
        @ctags --python-kinds=-iv -R juju
24
24
 
25
25
etags:
26
 
        @ctags -e --python-kinds=-iv -R ensemble
 
26
        @ctags -e --python-kinds=-iv -R juju
27
27
 
28
28
modified=$(shell bzr status -S  |grep -P '^\s*M' | awk '{print $$2;}'| grep -P ".py$$")
29
29
check: