summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--Makefile9
1 files changed, 6 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 777b1a1..c0857a9 100644
--- a/Makefile
+++ b/Makefile
@@ -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