diff --git a/Makefile b/Makefile
index 47378ffc10f5f4c4890e8a6e8a6aef64865e5188..9249da68bc3e6ce6d3316428c6e248fe97b0b7f1 100644
--- a/Makefile
+++ b/Makefile
@@ -55,6 +55,9 @@ all: $(BINPROGS) $(SBINPROGS) bash_completion zsh_completion
 	@chmod a-w "$@"
 	@chmod +x "$@"
 
+clean:
+	rm -f $(BINPROGS) $(SBINPROGS) bash_completion zsh_completion
+
 install:
 	install -dm0755 $(DESTDIR)$(PREFIX)/bin
 	install -dm0755 $(DESTDIR)$(PREFIX)/sbin
@@ -84,4 +87,4 @@ dist:
 upload:
 	scp devtools-$(V).tar.gz gerolde.archlinux.org:/srv/ftp/other/devtools/
 
-.PHONY: all install uninstall dist upload
+.PHONY: all clean install uninstall dist upload