diff options
| author | Amlal El Mahrouss <amlal@nekernel.org> | 2025-12-17 08:02:26 +0100 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal@nekernel.org> | 2025-12-17 08:02:26 +0100 |
| commit | b4914b962ff2eccfeae931acdfdd5b7e97556ead (patch) | |
| tree | a2ac320e8497eace59dc4db7f7ea4c30d663a710 | |
| parent | d6a501ca56a3f41df7baf7b2cdce926446568dc7 (diff) | |
chore: new Makefile.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
| -rw-r--r-- | Makefile | 9 |
1 files changed, 6 insertions, 3 deletions
@@ -2,7 +2,8 @@ # Author: Amlal El Mahrouss # Purpose: Generate HTML papers from LaTex documents. -TEX := htlatex +PDFTEX := pdflatex +HTTEX := htlatex ECHO := @echo all: html-wg01 html-wg02 @@ -10,8 +11,10 @@ all: html-wg01 html-wg02 .PHONY: html-wg01 html-wg01: - $(TEX) source/wg01/wg01.tex + $(HTTEX) source/wg01/wg01.tex + $(PDFTEX) source/wg01/wg01.tex .PHONY: html-wg02 html-wg02: - $(TEX) source/wg02/wg02.tex + $(HTTEX) source/wg02/wg02.tex + $(PDFTEX) source/wg02/wg02.tex |
