From 9240293526862f04b8400cf9689882342d5e8832 Mon Sep 17 00:00:00 2001
From: Laurent Modolo <laurent@modolo.fr>
Date: Mon, 12 Oct 2020 14:11:16 +0200
Subject: [PATCH] 6. session on processes

---
 Makefile | 11 ++++++++++-
 1 file changed, 10 insertions(+), 1 deletion(-)

diff --git a/Makefile b/Makefile
index ba9e716..0ccb4f3 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
-- 
GitLab