summaryrefslogtreecommitdiffhomepage
path: root/Makefile
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal.elmahrouss@icloud.com>2025-12-16 22:17:35 +0100
committerGitHub <noreply@github.com>2025-12-16 22:17:35 +0100
commit8300a049bea5871ba2db4117d7b4f5a673ee251e (patch)
tree61c9b9424600904a754d766abf0adfa4ad4f6e7c /Makefile
parentbbf5145d4b0497535e71002218ef5271ba0bbead (diff)
chore: Improved makefile and structure.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile9
1 files changed, 6 insertions, 3 deletions
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