HexaCone/Makefile

22 lines
409 B
Makefile
Raw Normal View History

2024-12-16 03:53:42 +11:00
2024-12-21 00:24:45 +11:00
POVOPT = +q9 +a0.02 -d
2024-12-29 14:56:10 +11:00
POVDEP = contexte.inc elements.inc \
globals.inc datas/hf.png
2024-12-16 03:53:42 +11:00
2024-12-29 14:56:10 +11:00
PNG: essai.png scene.png topview.png
2024-12-16 03:53:42 +11:00
2024-12-29 14:56:10 +11:00
topview.png: topview.pov Makefile $(POVDEP)
povray $(POVOPT) -K200 -W1280 -H1024 -i$< -o$@
2024-12-16 03:53:42 +11:00
essai.png: essai.pov Makefile $(POVDEP)
2024-12-23 01:05:36 +11:00
povray $(POVOPT) -W800 -H600 -i$< -o$@
2024-12-16 03:53:42 +11:00
2024-12-29 00:45:01 +11:00
CK=306
2024-12-16 03:53:42 +11:00
scene.png: scene.pov Makefile $(POVDEP)
2024-12-29 00:45:01 +11:00
povray $(POVOPT) -W3200 -H2400 +K${CK} -i$< -o$@
2024-12-16 03:53:42 +11:00