Skip to content

Commit 84b3e3c

Browse files
committed
convert the latex documention to rst
This will ease editing the documentation. For now only a HTML output is generated. Signed-off-by: Michael Walle <[email protected]>
1 parent e9ea4b3 commit 84b3e3c

File tree

3 files changed

+484
-472
lines changed

3 files changed

+484
-472
lines changed

doc/Makefile

+5-9
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,13 @@
1-
TEX=mmu.tex
1+
DOCS=mmu.html
22

33
RM ?= rm -f
44

5-
PDF=$(TEX:.tex=.pdf)
6-
AUX=$(TEX:.tex=.aux)
7-
LOG=$(TEX:.tex=.log)
5+
all: $(DOCS)
86

9-
all: $(PDF)
10-
11-
%.pdf: %.tex
12-
texi2pdf $<
7+
%.html: %.rst
8+
rst2html $< >$@
139

1410
clean:
15-
$(RM) $(PDF) $(LOG) $(AUX)
11+
$(RM) $(DOCS)
1612

1713
.PHONY: clean

0 commit comments

Comments
 (0)