~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to Makefile

Refactored the export code to make it easier to add new export formats.

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
4
        ./bzr selftest
6
5
 
 
6
clean: 
 
7
        ./setup.py clean
 
8
        find . -name "*.pyc" | xargs rm
 
9
        rm -rf test????.tmp
 
10
 
7
11
.PHONY: all
8
12
 
9
13