~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:
10
10
 
11
11
clean: 
12
12
        ./setup.py clean
13
 
        -find . -name "*.pyc" | xargs rm
14
 
        -find . -name "*.pyo" | xargs rm
 
13
        -find . -name "*.pyc" -o -name "*.pyo" | xargs rm -f
15
14
        rm -rf test????.tmp
16
15
 
17
16
.PHONY: all