diff options
| author | Amlal El Mahrouss <amlal.elmahrouss@icloud.com> | 2025-12-16 22:17:35 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-12-16 22:17:35 +0100 |
| commit | 8300a049bea5871ba2db4117d7b4f5a673ee251e (patch) | |
| tree | 61c9b9424600904a754d766abf0adfa4ad4f6e7c /Makefile | |
| parent | bbf5145d4b0497535e71002218ef5271ba0bbead (diff) | |
chore: Improved makefile and structure.
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 9 |
1 files changed, 6 insertions, 3 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 |
