Korrigiere Beugungsskript.
[wortliste.git] / dehyph-exptl / Makefile
blobee7fe09a334055fae562e6806f9195ba2c93374a
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
28 $(PDFLATEX) dehyph-exptl
30 # EOF