24 lines
443 B
Makefile
24 lines
443 B
Makefile
# what's where?
|
|
include GNUmakevars
|
|
|
|
|
|
all: \
|
|
test-kintradims_hoehe.png \
|
|
|
|
|
|
%.ppm: %.pov
|
|
$(POVRAY) +W$(WIDTH) +H$(HEIGHT) +V -I$< +L$(POVINC) +D +FP
|
|
|
|
%.png: %.pov
|
|
$(POVRAY) +V -I$< +L$(POVINC) +D +FN
|
|
|
|
%.pov: make%
|
|
$< > $@
|
|
|
|
test-kintradims_hoehe.png: test-kintradims_hoehe.pov \
|
|
kintradims_hoehe.pov plattform.pov zahnrad.pov torbogen.pov
|
|
$(POVRAY) +W800 +H600 +V -I$< +L$(POVINC) +D +FN
|
|
|
|
%.gif: %.ppm
|
|
ppmquant 256 $< | ppmtogif > $@
|