Browse Source

add html output for the documentation (using tex4ht)

SVN-Revision: 6199
Felix Fietkau 19 years ago
parent
commit
c449bfea52
2 changed files with 15 additions and 6 deletions
  1. 14 5
      docs/Makefile
  2. 1 1
      docs/openwrt.tex

+ 14 - 5
docs/Makefile

@@ -1,14 +1,23 @@
-openwrt.pdf: Makefile openwrt.tex config.tex network.tex network-scripts.tex network-scripts.tex wireless.tex build.tex adding.tex bugs.tex
+MAIN = openwrt.tex
+DEPS = $(MAIN) Makefile config.tex network.tex network-scripts.tex network-scripts.tex wireless.tex build.tex adding.tex bugs.tex
+
+all:
 	$(MAKE) cleanup
-	pdflatex openwrt.tex
-	pdflatex openwrt.tex
+	latex $(MAIN)
+	$(MAKE) openwrt.pdf openwrt.html
 	$(MAKE) cleanup
+
+openwrt.html: $(DEPS)
+	htlatex $(MAIN)
+
+openwrt.pdf: $(DEPS)
+	pdflatex $(MAIN)
 	
 clean: cleanup
-	rm -f openwrt.pdf
+	rm -f openwrt.pdf openwrt.html openwrt.css
 
 cleanup: FORCE
-	rm -f *.log *.aux *.toc *.out
+	rm -f *.log *.aux *.toc *.out *.lg *.dvi *.idv *.4ct *.4tc *.xref *.tmp *.dvi
 
 
 FORCE:

+ 1 - 1
docs/openwrt.tex

@@ -1,6 +1,6 @@
 \documentclass[a4paper]{book}
 \usepackage[latin9]{inputenc}
-\usepackage[pdftex,bookmarks=true]{hyperref}
+\usepackage[bookmarks=true]{hyperref}
 \usepackage[T1]{fontenc}
 \usepackage{ae,aecompl,aeguill}
 \usepackage{fancyvrb}