Python Skript update.
[wortliste.git] / dehyph-exptl / Makefile
blob0e844add1a5a10150a0bce08394ff6b7ee1bedcb
1 # This Makefile prepares documentation for package dehyph-exptl.
3 BIBTEX = bibtex
4 PDFLATEX = pdflatex
5 RM = rm -f
8 .PHONY: all doc clean note
10 note:
11 @echo "*** Makefile for dehyph-exptl package documentation ***"
12 @echo "Please type:"
13 @echo "make doc to build documentation."
14 @echo "make clean to clean this directory."
16 all: doc
18 doc: dehyph-exptl.pdf
20 clean:
21 $(RM) *.aux *.bbl *.blg *.log *.out *.toc
23 dehyph-exptl.pdf: dehyph-exptl.tex dehyph-exptl.bib
24 $(PDFLATEX) dehyph-exptl
25 $(BIBTEX) dehyph-exptl
26 $(PDFLATEX) dehyph-exptl
27 $(PDFLATEX) dehyph-exptl
29 # EOF