18 lines
285 B
Makefile
18 lines
285 B
Makefile
|
|
|
|
POVOPT = +q9 +a0.02 -d
|
|
POVDEP = contexte.inc elements.inc datas/hf.png
|
|
|
|
|
|
PNG: essai.png scene.png
|
|
|
|
|
|
essai.png: essai.pov Makefile $(POVDEP)
|
|
povray $(POVOPT) -W640 -H480 -i$< -o$@
|
|
|
|
CK=130
|
|
scene.png: scene.pov Makefile $(POVDEP)
|
|
povray $(POVOPT) -W1280 -H1024 +K${CK} -i$< -o$@
|
|
|
|
|