fix Makefile

This commit is contained in:
Yann Leboulanger 2005-07-19 09:35:26 +00:00
parent 52be23ab92
commit 29e9d8c699
1 changed files with 3 additions and 3 deletions

View File

@ -33,9 +33,9 @@ idle:
${MAKE} -C src/common all;
clean:
find . -name *.pyc -exec rm {} \;
find . -name *.pyo -exec rm {} \;
find . -name *.mo -exec rm {} \;
find . -name '*.pyc' -exec rm {} \;
find . -name '*.pyo' -exec rm {} \;
find . -name '*.mo' -exec rm {} \;
$(foreach sdir, $(MODULES), ${MAKE} -C $(sdir) clean;)
dist: