From 8300a049bea5871ba2db4117d7b4f5a673ee251e Mon Sep 17 00:00:00 2001 From: Amlal El Mahrouss Date: Tue, 16 Dec 2025 22:17:35 +0100 Subject: chore: Improved makefile and structure. --- Makefile | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index f2019ba..4aa5669 100644 --- a/Makefile +++ b/Makefile @@ -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 -- cgit v1.2.3