Makefile: Implement clean target

Change-Id: Ia21b0f184bfd454b3835774949f581a27860a80a
diff --git a/Makefile b/Makefile
index ee6300e..c36aa9a 100644
--- a/Makefile
+++ b/Makefile
@@ -15,4 +15,10 @@
 	$(MAKE) -C selftest check
 	@echo "make check: success"
 
+clean:
+	$(MAKE) -C selftest clean
+	$(MAKE) -C doc/manuals clean
+	@find . -name "*__pycache__" -type d -print0 | xargs -0 rm -rvf
+	@rm -fv ./src/osmo_gsm_tester/_version.py
+	@rm -fv ./version
 # vim: noexpandtab tabstop=8 shiftwidth=8
diff --git a/selftest/Makefile b/selftest/Makefile
index f0c8c69..fb8618c 100644
--- a/selftest/Makefile
+++ b/selftest/Makefile
@@ -9,4 +9,9 @@
 set_pythonpath:
 	echo "export PYTHONPATH=\"$(PWD)/../src\"" > set_pythonpath
 
+clean:
+	@find . -name "*__pycache__" -type d -print0 | xargs -0 rm -rvf
+	@find . -name "*test_work" -type d -print0 | xargs -0 rm -rvf
+	@rm -fv ./set_pythonpath
+
 # vim: noexpandtab tabstop=8 shiftwidth=8