HexaCone/Makefile

36 lines
861 B
Makefile
Raw Normal View History

2024-12-16 03:53:42 +11:00
2025-01-05 19:09:25 +11:00
DIMS = -W1600 -H1200
2024-12-21 00:24:45 +11:00
POVOPT = +q9 +a0.02 -d
2025-01-05 19:09:25 +11:00
POVDEP = contexte.inc elements.inc hexabenz.inc \
2024-12-29 14:56:10 +11:00
globals.inc datas/hf.png
2024-12-16 03:53:42 +11:00
2025-01-12 12:33:39 +11:00
CK=180
2025-01-05 19:09:25 +11:00
2024-12-16 03:53:42 +11:00
2025-01-02 02:30:11 +11:00
PNG: essai.png scene.png topview.png passage.png \
2025-01-07 02:07:14 +11:00
orbite.png hexabenz.png escadrille.png
2024-12-16 03:53:42 +11:00
2024-12-29 14:56:10 +11:00
topview.png: topview.pov Makefile $(POVDEP)
2025-01-05 19:09:25 +11:00
povray $(POVOPT) $(DIMS) -K$(CK) -i$< -o$@
2024-12-29 14:56:10 +11:00
2024-12-16 03:53:42 +11:00
essai.png: essai.pov Makefile $(POVDEP)
2025-01-05 19:09:25 +11:00
povray $(POVOPT) $(DIMS) -K$(CK) -i$< -o$@
hexabenz.png: hexabenz.pov Makefile $(POVDEP)
povray $(POVOPT) $(DIMS) +K$(CK) -i$< -o$@
2024-12-16 03:53:42 +11:00
2024-12-30 04:42:52 +11:00
passage.png: passage.pov Makefile $(POVDEP)
2025-01-05 19:09:25 +11:00
povray $(POVOPT) $(DIMS) -K$(CK) -i$< -o$@
2024-12-30 04:42:52 +11:00
2025-01-02 02:30:11 +11:00
orbite.png: orbite.pov Makefile $(POVDEP)
2025-01-05 19:09:25 +11:00
povray $(POVOPT) $(DIMS) -K$(CK) -i$< -o$@
2025-01-02 02:30:11 +11:00
2024-12-16 03:53:42 +11:00
scene.png: scene.pov Makefile $(POVDEP)
2025-01-05 19:09:25 +11:00
povray $(POVOPT) $(DIMS) +K$(CK) -i$< -o$@
2024-12-16 03:53:42 +11:00
2025-01-07 02:07:14 +11:00
escadrille.png: escadrille.pov Makefile $(POVDEP)
povray $(POVOPT) $(DIMS) +K$(CK) -i$< -o$@
2024-12-16 03:53:42 +11:00