~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to Makefile

 * bzr add now lists how many files were ignored per glob.  add --verbose
   lists the specific files.  (Aaron Bentley)

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
 
3
3
check:
4
4
        ./bzr selftest $(tests)
5
 
        @echo "Running all tests with no locale."
6
 
        LC_CTYPE= LANG=C LC_ALL= ./bzr selftest $(tests)
7
5
 
8
6
check-msgeditor:
9
7
        ./bzr --no-plugins selftest -v msgeditor
10
8
 
11
9
clean: 
12
10
        ./setup.py clean
13
 
        -find . -name "*.pyc" -o -name "*.pyo" | xargs rm -f
 
11
        find . -name "*.pyc" | xargs rm
14
12
        rm -rf test????.tmp
15
13
 
16
14
.PHONY: all
20
18
tag_files=./bzr ./bzrlib/*py ./bzrlib/selftest/*.py
21
19
TAGS: $(tag_files)
22
20
        ctags-exuberant -e $(tag_files)
23
 
 
24
 
tutorial.html: tutorial.txt
25
 
        rest2html tutorial.txt > tutorial.html