HexaCone/Makefile

25 lines
517 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-30 04:42:52 +11:00
PNG: essai.png scene.png topview.png passage.png
2024-12-16 03:53:42 +11:00
2024-12-29 14:56:10 +11:00
topview.png: topview.pov Makefile $(POVDEP)
2024-12-30 04:42:52 +11:00
povray $(POVOPT) -W1280 -H1024 -K359 -i$< -o$@
2024-12-29 14:56:10 +11:00
2024-12-16 03:53:42 +11:00
essai.png: essai.pov Makefile $(POVDEP)
2024-12-30 04:42:52 +11:00
povray $(POVOPT) -W1280 -H1024 -i$< -o$@
2024-12-16 03:53:42 +11:00
2024-12-30 04:42:52 +11:00
passage.png: passage.pov Makefile $(POVDEP)
2024-12-31 22:51:12 +11:00
povray $(POVOPT) -W1280 -H1024 -K340 -i$< -o$@
2024-12-30 04:42:52 +11:00
CK=175
2024-12-16 03:53:42 +11:00
scene.png: scene.pov Makefile $(POVDEP)
2024-12-30 04:42:52 +11:00
povray $(POVOPT) -W1280 -H1024 +K${CK} -i$< -o$@
2024-12-16 03:53:42 +11:00