~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to Makefile

  • Committer: John Arbash Meinel
  • Date: 2006-01-23 22:33:23 UTC
  • mto: This revision was merged to the branch mainline in revision 1551.
  • Revision ID: john@arbash-meinel.com-20060123223323-16eb865383bf650a
From Jari Alto: Makefile fixes (clean target error suppression)

Show diffs side-by-side

added added

removed removed

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