diff --git a/README_SETUP.md b/README_SETUP.md
index 43e9f1a1e057130a6a9bb009e25a94da00c7d594..50bd611cd83ad6d7c8b13239e67e4d117455bca9 100644
--- a/README_SETUP.md
+++ b/README_SETUP.md
@@ -4,11 +4,18 @@
 * The `libs` folder contains all necessary third-party libraries as zip files.
 * The `test` folder contains the unittests for the webinterface.
 * The `ext` folder contains extension for the webinterface. The make file will copy all javascript files from `ext/js/` into the public folder and links the javascript in the `public/xsl/main.xsl`.
-* The `misc` folder contains a simple http server which is used for running the unit tests. 
+* The `misc` folder contains a simple http server which is used for running the unit tests.
 
 # Setup
 
 * run `make install` to compile/copy the webinterface to a newly created `public` folder.
-* run `make test` to compile/copy the webinterface and the tests to a newly created `public` folder and start a python http server. The test suite can be started with
-    `firefox http://localhost:8000/webinterface/`
+
+# Test
+
+* run `make test` to compile/copy the webinterface and the tests to a newly created `public` folder.
+* run `make run-test-server` to start a python http server.
+* The test suite can be started with `firefox http://localhost:8000/webinterface/`
+
+# Clean
+
 * run `make clean` to clean up everything.