From 28db51252b38c2679af7d27022dc4be7732fc769 Mon Sep 17 00:00:00 2001 From: Laurent Modolo <laurent@modolo.fr> Date: Mon, 12 Oct 2020 14:01:57 +0200 Subject: [PATCH] mv html file to html folder --- Makefile | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/Makefile b/Makefile index 30dc75d..ba9e716 100644 --- a/Makefile +++ b/Makefile @@ -1,19 +1,19 @@ -all: index.html 1_understanding_a_computer.html 2_using_the_ifb_cloud.html 3_first_steps_in_a_terminal.html 4_unix_file_system.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 index.html: index.md github-pandoc.css - pandoc -s -c github-pandoc.css index.md -o index.html + pandoc -s -c github-pandoc.css index.md -o html/index.html -1_understanding_a_computer.html: 1_understanding_a_computer.md github-pandoc.css - pandoc -s --toc -c github-pandoc.css 1_understanding_a_computer.md -o 1_understanding_a_computer.html +html/1_understanding_a_computer.html: 1_understanding_a_computer.md github-pandoc.css + pandoc -s --toc -c github-pandoc.css 1_understanding_a_computer.md -o html/1_understanding_a_computer.html -2_using_the_ifb_cloud.html: 2_using_the_ifb_cloud.md github-pandoc.css - pandoc -s --toc -c github-pandoc.css 2_using_the_ifb_cloud.md -o 2_using_the_ifb_cloud.html +html/2_using_the_ifb_cloud.html: 2_using_the_ifb_cloud.md github-pandoc.css + pandoc -s --toc -c github-pandoc.css 2_using_the_ifb_cloud.md -o html/2_using_the_ifb_cloud.html -3_first_steps_in_a_terminal.html: 3_first_steps_in_a_terminal.md github-pandoc.css - pandoc -s --toc -c github-pandoc.css 3_first_steps_in_a_terminal.md -o 3_first_steps_in_a_terminal.html +html/3_first_steps_in_a_terminal.html: 3_first_steps_in_a_terminal.md github-pandoc.css + pandoc -s --toc -c github-pandoc.css 3_first_steps_in_a_terminal.md -o html/3_first_steps_in_a_terminal.html -4_unix_file_system.html: 4_unix_file_system.md github-pandoc.css - pandoc -s --toc -c github-pandoc.css 4_unix_file_system.md -o 4_unix_file_system.html +html/4_unix_file_system.html: 4_unix_file_system.md github-pandoc.css + pandoc -s --toc -c github-pandoc.css 4_unix_file_system.md -o html/4_unix_file_system.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 5_users_and_rights.html +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 -- GitLab