diff --git a/Makefile b/Makefile
index 7c4b59937b327960f66a0013110a397544af8576..524175c2bad0b35b975f79284c2f5a6d5eaf2eb4 100644
--- a/Makefile
+++ b/Makefile
@@ -1,26 +1,5 @@
-BASENAME := $(shell basename `pwd` | sed 's/.*-//')
-
-PKGNAME = swh.$(BASENAME)
-PKGDIR = swh/$(BASENAME)
-EXTRA_DIRS := $(shell test -d bin && echo bin)
-
-NOSE = nosetests3
-NOSEFLAGS = -v
-FLAKE = flake8
-FLAKEFLAGS =
-
-all:
-
-.PHONY: test
-test:
-	$(NOSE) $(NOSEFLAGS)
-
-.PHONY: coverage
-coverage:
-	$(NOSE) $(NOSEFLAGS) --with-coverage --cover-package $(PKGNAME)
-
-.PHONY: check
-check:
-	$(FLAKE) $(FLAKEFLAGS) $(PKGDIR) $(EXTRA_DIRS)
+# Makefile driver for SWH Python modules. DO NOT CHANGE.
+# You can add custom Makefile rules to Makefile.local
 
+include ../Makefile.python
 -include Makefile.local