blob: eed2e56967b490c0da70db567c17895857602cee (
plain)
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
58
59
60
61
62
63
64
65
66
67
68
69
|
#
# Makefile to build images
#
# (c) 2022
#
all: position
POSITION = \
position1.pdf position1-small.pdf \
position2.pdf position2-small.pdf \
position3.pdf position3-small.pdf \
position4.pdf position4-small.pdf \
position5.pdf position5-small.pdf
position: $(POSITION)
POVRAYOPTIONS = -W1080 -H1080
#POVRAYOPTIONS = -W480 -H480
position1.png: position1.pov common.inc ../macros.inc
povray +A0.1 $(POVRAYOPTIONS) -Oposition1.png position1.pov
position1.jpg: position1.png
convert position1.png -density 300 -units PixelsPerInch position1.jpg
position1.pdf: position1.tex common.tex position1.jpg
pdflatex position1.tex
position2.png: position2.pov common.inc ../macros.inc
povray +A0.1 $(POVRAYOPTIONS) -Oposition2.png position2.pov
position2.jpg: position2.png
convert position2.png -density 300 -units PixelsPerInch position2.jpg
position2.pdf: position2.tex common.tex position2.jpg
pdflatex position2.tex
position3.png: position3.pov common.inc ../macros.inc
povray +A0.1 $(POVRAYOPTIONS) -Oposition3.png position3.pov
position3.jpg: position3.png
convert position3.png -density 300 -units PixelsPerInch position3.jpg
position3.pdf: position3.tex common.tex position3.jpg
pdflatex position3.tex
position4.png: position4.pov common.inc ../macros.inc
povray +A0.1 $(POVRAYOPTIONS) -Oposition4.png position4.pov
position4.jpg: position4.png
convert position4.png -density 300 -units PixelsPerInch position4.jpg
position4.pdf: position4.tex common.tex position4.jpg
pdflatex position4.tex
position5.png: position5.pov common.inc ../macros.inc
povray +A0.1 $(POVRAYOPTIONS) -Oposition5.png position5.pov
position5.jpg: position5.png
convert position5.png -density 300 -units PixelsPerInch position5.jpg
position5.pdf: position5.tex common.tex position5.jpg
pdflatex position5.tex
position1-small.pdf: position1-small.tex common.tex position1.jpg
pdflatex position1-small.tex
position2-small.pdf: position2-small.tex common.tex position2.jpg
pdflatex position2-small.tex
position3-small.pdf: position3-small.tex common.tex position3.jpg
pdflatex position3-small.tex
position4-small.pdf: position4-small.tex common.tex position4.jpg
pdflatex position4-small.tex
position5-small.pdf: position5-small.tex common.tex position5.jpg
pdflatex position5-small.tex
test: test.pdf
test.pdf: test.tex $(POSITION)
pdflatex test.tex
|