fix Makefile
This commit is contained in:
parent
52be23ab92
commit
29e9d8c699
6
Makefile
6
Makefile
|
@ -33,9 +33,9 @@ idle:
|
||||||
${MAKE} -C src/common all;
|
${MAKE} -C src/common all;
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
find . -name *.pyc -exec rm {} \;
|
find . -name '*.pyc' -exec rm {} \;
|
||||||
find . -name *.pyo -exec rm {} \;
|
find . -name '*.pyo' -exec rm {} \;
|
||||||
find . -name *.mo -exec rm {} \;
|
find . -name '*.mo' -exec rm {} \;
|
||||||
$(foreach sdir, $(MODULES), ${MAKE} -C $(sdir) clean;)
|
$(foreach sdir, $(MODULES), ${MAKE} -C $(sdir) clean;)
|
||||||
|
|
||||||
dist:
|
dist:
|
||||||
|
|
Loading…
Reference in New Issue