Mercurial > hg-stable
comparison Makefile @ 4707:3fd4dde37628
Makefile: remove *.pyd files on "make clean".
author | Markus F.X.J. Oberhumer <markus@oberhumer.com> |
---|---|
date | Mon, 25 Jun 2007 14:46:20 +0200 |
parents | f0aa759b8f93 |
children | 02e358a3a8a7 |
comparison
equal
deleted
inserted
replaced
4706:f0aa759b8f93 | 4707:3fd4dde37628 |
---|---|
33 doc: | 33 doc: |
34 $(MAKE) -C doc | 34 $(MAKE) -C doc |
35 | 35 |
36 clean: | 36 clean: |
37 -$(PYTHON) setup.py clean --all # ignore errors of this command | 37 -$(PYTHON) setup.py clean --all # ignore errors of this command |
38 find . -name '*.py[co]' -exec rm -f '{}' ';' | 38 find . -name '*.py[cdo]' -exec rm -f '{}' ';' |
39 rm -f MANIFEST mercurial/__version__.py mercurial/*.so tests/*.err | 39 rm -f MANIFEST mercurial/__version__.py mercurial/*.so tests/*.err |
40 $(MAKE) -C doc clean | 40 $(MAKE) -C doc clean |
41 | 41 |
42 install: install-bin install-doc | 42 install: install-bin install-doc |
43 | 43 |