equal
deleted
inserted
replaced
|
1 #------------------------------------------------------------------------------ |
|
2 # |
|
3 # LaTeX Makefile |
|
4 # |
|
5 # $Id$ |
|
6 # |
|
7 #------------------------------------------------------------------------------ |
|
8 |
|
9 FILE := ethercat_doc |
|
10 |
|
11 LATEX_OPTIONS := -file-line-error-style |
|
12 |
|
13 #------------------------------------------------------------------------------ |
|
14 |
|
15 first: pdf |
|
16 |
|
17 all: dvi pdf |
|
18 |
|
19 dvi: |
|
20 latex $(LATEX_OPTIONS) \\nonstopmode\\input{$(FILE).tex} |
|
21 |
|
22 pdf: |
|
23 pdflatex $(LATEX_OPTIONS) $(FILE) |
|
24 |
|
25 index: |
|
26 makeindex $(FILE) |
|
27 makeindex $(FILE).glo -s nomencl.ist -o $(FILE).gls |
|
28 |
|
29 clean: |
|
30 @rm -f $(FILE).aux $(FILE).dvi $(FILE).idx \ |
|
31 $(FILE).ilg $(FILE).ind $(FILE).log \ |
|
32 $(FILE).out $(FILE).pdf $(FILE).ps \ |
|
33 $(FILE).toc $(FILE).lot $(FILE).lof \ |
|
34 $(FILE).lol $(FILE).glo $(FILE).gls \ |
|
35 images/*.bak *~ |
|
36 |
|
37 #------------------------------------------------------------------------------ |