blob: 7e286a2dfc8a4acd6a31498030357760c008a76b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# File: Makefile
# Author: Amlal El Mahrouss
# Purpose: Generate HTML and PDF papers from LaTex documents.
# (C) 2025-2026 Amlal El Mahrouss.
# Licensed under Apache 2.0.
PDFTEX ?= pdflatex
HTMLTEX ?= htlatex
ECHO := @echo
.PHONY: all
all: clean
ECHO "Cleanup is done."
.PHONY: clean
clean:
@rm -rf *.4ct *.4tc *.aux *.css *.pdf *.html *.tmp *.dvi *.idv *.lg *.log *.xref *.out *.png
include wg01.mk
include wg02.mk
include wg03.mk
include wg04.mk
include wg05.mk
|