-
Notifications
You must be signed in to change notification settings - Fork 15
/
Makefile
58 lines (47 loc) · 1.33 KB
/
Makefile
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
#Este trabalho está licenciado sob a Licença Creative Commons Atribuição-CompartilhaIgual 3.0 Não Adaptada. Para ver uma cópia desta licença, visite http://creativecommons.org/licenses/by-sa/3.0/ ou envie uma carta para Creative Commons, PO Box 1866, Mountain View, CA 94042, USA.
########################################
#
# ATENÇÃO
#
# POR SEGURANÇA, NÃO EDITE ESTE ARQUIVO.
#
########################################
pdf: main.tex
cp config-book.knd config.knd
latex main
bibtex main
# makeindex main
latex main
latex main
dvips main.dvi
ps2pdf main.ps
ps: main.tex
cp config-book.knd config.knd
latex main
bibtex main
# makeindex main
latex main
latex main
dvips main.dvi
dvi: main.tex
cp config-book.knd config.knd
latex main
bibtex main
# makeindex main
latex main
latex main
html: main.html
main.html: main.tex
rm -f html/*
cp config-html.knd config.knd
mkdir -p html
latex main
latex main
latex main
mk4ht htlatex main "myconfig,3,notoc*" "" "-d./html/"
cp config-book.knd config.knd
.PHONY: clean
clean:
rm -rf */*/*.aux */*/*.log */*/*.out */*/*.toc */*/*.bbl */*/*.idx */*/*.ilg */*/*.ind */*/*.blg */*/*.backup
rm -rf */*.aux */*.log */*.out */*.toc */*.bbl */*.idx */*.ilg */*.ind */*.blg */*.backup
rm -f *.aux *.log *.out *.toc *.bbl *.idx *.ilg *.ind *.blg *.backup *.html