40 lines
970 B
Makefile
40 lines
970 B
Makefile
|
|
DIMS = -W1600 -H1200
|
|
POVOPT = +q9 +a0.02 -d
|
|
POVDEP = contexte.inc elements.inc hexabenz.inc \
|
|
globals.inc datas/hf.png
|
|
|
|
CK=180
|
|
|
|
|
|
PNG: essai.png scene.png topview.png passage.png \
|
|
orbite.png hexabenz.png escadrille.png \
|
|
hexacone.png
|
|
|
|
|
|
topview.png: topview.pov Makefile $(POVDEP)
|
|
povray $(POVOPT) $(DIMS) -K$(CK) -i$< -o$@
|
|
|
|
essai.png: essai.pov Makefile $(POVDEP)
|
|
povray $(POVOPT) $(DIMS) -K$(CK) -i$< -o$@
|
|
|
|
hexabenz.png: hexabenz.pov Makefile $(POVDEP)
|
|
povray $(POVOPT) $(DIMS) +K$(CK) -i$< -o$@
|
|
|
|
hexacone.png: hexacone.pov Makefile $(POVDEP)
|
|
povray $(POVOPT) $(DIMS) +K$(CK) -i$< -o$@
|
|
|
|
passage.png: passage.pov Makefile $(POVDEP)
|
|
povray $(POVOPT) $(DIMS) -K$(CK) -i$< -o$@
|
|
|
|
orbite.png: orbite.pov Makefile $(POVDEP)
|
|
povray $(POVOPT) $(DIMS) -K$(CK) -i$< -o$@
|
|
|
|
scene.png: scene.pov Makefile $(POVDEP)
|
|
povray $(POVOPT) $(DIMS) +K$(CK) -i$< -o$@
|
|
|
|
escadrille.png: escadrille.pov Makefile $(POVDEP)
|
|
povray $(POVOPT) $(DIMS) +K$(CK) -i$< -o$@
|
|
|
|
|