HexaCone/Makefile

18 lines
284 B
Makefile
Raw Normal View History

2024-12-16 03:53:42 +11:00
2024-12-18 00:36:26 +11:00
POVOPT = +q9 +a0.01 -d
2024-12-16 03:53:42 +11:00
POVDEP = contexte.inc elements.inc datas/hf.png
PNG: essai.png scene.png
essai.png: essai.pov Makefile $(POVDEP)
2024-12-16 04:15:25 +11:00
povray $(POVOPT) -W640 -H480 -i$< -o$@
2024-12-16 03:53:42 +11:00
2024-12-18 00:36:26 +11:00
CK=30
2024-12-16 03:53:42 +11:00
scene.png: scene.pov Makefile $(POVDEP)
2024-12-18 00:36:26 +11:00
povray $(POVOPT) -W1280 -H1024 +K${CK} -i$< -o$@
2024-12-16 03:53:42 +11:00