diff --git a/Makefile b/Makefile
index ba9e71649573bf1f20ec3c4098db86dbcc2e2d1a..0ccb4f30f57290ab8f165ebc2763ec21500c76d9 100644
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,10 @@
-all: html/index.html html/1_understanding_a_computer.html html/2_using_the_ifb_cloud.html html/3_first_steps_in_a_terminal.html html/4_unix_file_system.html html/5_users_and_rights.html
+all: html/index.html \
+	html/1_understanding_a_computer.html \
+	html/2_using_the_ifb_cloud.html \
+	html/3_first_steps_in_a_terminal.html \
+	html/4_unix_file_system.html \
+	html/5_users_and_rights.html \
+	html/6_unix_processes.html
 
 index.html: index.md github-pandoc.css
 	pandoc -s -c github-pandoc.css index.md -o html/index.html
@@ -17,3 +23,6 @@ html/4_unix_file_system.html: 4_unix_file_system.md github-pandoc.css
 
 html/5_users_and_rights.html: 5_users_and_rights.md github-pandoc.css
 	pandoc -s --toc -c github-pandoc.css 5_users_and_rights.md -o html/5_users_and_rights.html
+
+html/6_unix_processes.html: 6_unix_processes.md github-pandoc.css
+	pandoc -s --toc -c github-pandoc.css 6_unix_processes.md -o html/6_unix_processes.html