1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
|
LATEX=latex -no-shell-escape -interaction=batchmode
TTH=../tth -a
# If latex is not installed, try the following fall-back:
#LATEX=echo
#TTH=../tth
all : tth_manual.html ttm_manual.html split/index.html
tth_manual.html : tth_manual.tex makefile
$(LATEX) tth_manual
$(TTH) tth_manual
ttm_manual.html : ttm_manual.tex
$(LATEX) ttm_manual
$(TTH) ttm_manual
ttm_manual.tex : tth_manual.tex
./tth2ttm
split/index.html : tth_manual.tex
make -C split
tidy :
make -C split tidy
rm -f *.log *.tlg *.idx *.ilg *.toc *.out *.dvi *.lyx *.tms *.tid *.tin *.ind
clean :
make -C split clean
rm -f *.log *.tlg *.idx *.ilg *.html *.toc *.out *.dvi *.lyx *.tms *.tid *.tin *.ind *.aux
|