From: Konstantin Stepanov Date: Sun, 12 Dec 2010 12:14:31 +0000 (+0200) Subject: Makefile: clean target to remove all compiled python files X-Git-Tag: v1.1.0~8 X-Git-Url: http://vcs.maemo.org/git/?p=dbuscron;a=commitdiff_plain;h=e0be71146911618e1d9a30861346a085a3d213a0 Makefile: clean target to remove all compiled python files --- diff --git a/Makefile b/Makefile index cf21aae..fb5a434 100644 --- a/Makefile +++ b/Makefile @@ -19,3 +19,7 @@ uninstall: rm -rf $(PYMODULES)/dbuscron rm -f $(PREFIX)/dbuscron $(PREFIX)/dbuscrontab rm -f /etc/event.d/dbuscron + +clean: + find . -name "*.py[co]" | xargs rm -f +