diff options
| -rw-r--r-- | Makefile | 9 | ||||
| -rw-r--r-- | README.md | 6 | ||||
| -rw-r--r-- | source/INDEX.md | 4 |
3 files changed, 10 insertions, 9 deletions
@@ -2,13 +2,16 @@ # Author: Amlal El Mahrouss # Purpose: Generate HTML papers from LaTex documents. +TEX := htlatex +ECHO := @echo + all: html-wg01 html-wg02 - @echo "=> DONE. + $(ECHO) "=> Done building Tex files." .PHONY: html-wg01 html-wg01: - htlatex source/wg01/wg01.tex + $(TEX) source/wg01/wg01.tex .PHONY: html-wg02 html-wg02: - htlatex source/wg02/wg02.tex + $(TEX) source/wg02/wg02.tex @@ -1,8 +1,6 @@ -# The WG Papers. +# Introduction: -## Introduction: - -This is the Working Group Papers of the NeKernel.org project. +This is the Working Group papers of NeKernel.org. Refer to [`CITATION.cff`](CITATION.cff) if you wish to cite these documents. ## Getting Started: diff --git a/source/INDEX.md b/source/INDEX.md index 4ced327..74215e6 100644 --- a/source/INDEX.md +++ b/source/INDEX.md @@ -1,10 +1,10 @@ -# Introduction +# Introduction: This file indexes the different working groups and their purpose. ## Working Groups: -The following working groups are active: +Here are the following active working groups: - WG01: `Kernel Architecture Group.` - WG02: `Multi-Tasking Group.` |
