~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to Makefile

Exclude more files from dumb-rsync upload

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
all: executables
2
 
 
3
 
executables:
4
 
        chmod u+x ./bzr
5
 
        chmod u+x ./setup.py
 
1
all: 
6
2
 
7
3
check:
8
4
        ./bzr selftest
9
5
 
10
 
clean: executables
 
6
clean: 
11
7
        ./setup.py clean
 
8
        find . -name "*.pyc" | xargs rm
 
9
        rm -rf test????.tmp
12
10
 
13
11
.PHONY: all
14
12