17 lines
258 B
Makefile
17 lines
258 B
Makefile
|
|
||
|
|
||
|
POVOPT = +q9 +a -d -W1024 -H768
|
||
|
POVDEP = contexte.inc elements.inc datas/hf.png
|
||
|
|
||
|
|
||
|
PNG: essai.png scene.png
|
||
|
|
||
|
|
||
|
essai.png: essai.pov Makefile $(POVDEP)
|
||
|
povray $(POVOPT) -i$< -o$@
|
||
|
|
||
|
scene.png: scene.pov Makefile $(POVDEP)
|
||
|
povray $(POVOPT) +K166 -i$< -o$@
|
||
|
|
||
|
|