HexaCone/Makefile

46 lines
1.2 KiB
Makefile
Raw Normal View History

2024-12-16 03:53:42 +11:00
2025-01-05 19:09:25 +11:00
DIMS = -W1600 -H1200
2025-01-20 07:45:56 +11:00
# POVOPT = +q9 +a0.02 -d
POVOPT = +q9 +A -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-14 00:46:45 +11:00
orbite.png hexabenz.png escadrille.png \
2025-01-20 07:45:56 +11:00
hexacone.png remote.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
2025-01-27 13:33:53 +11:00
cutoff.png: cutoff.pov Makefile $(POVDEP)
povray $(POVOPT) $(DIMS) -K$(CK) -i$< -o$@
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
2025-01-14 00:46:45 +11:00
hexacone.png: hexacone.pov Makefile $(POVDEP)
povray $(POVOPT) $(DIMS) +K$(CK) -i$< -o$@
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$@
2025-01-20 07:45:56 +11:00
remote.png: remote.pov Makefile $(POVDEP)
povray $(POVOPT) $(DIMS) +K$(CK) -i$< -o$@
2024-12-16 03:53:42 +11:00