22 lines
391 B
Makefile
22 lines
391 B
Makefile
# what's where?
|
|
include GNUmakevars
|
|
|
|
all: \
|
|
test-kopf.ppm \
|
|
test-hand.ppm \
|
|
test-torso.ppm \
|
|
test-roboter.ppm \
|
|
|
|
|
|
%.ppm: %.pov
|
|
$(POVRAY) +V -I$< +L$(POVINC) +D +FP
|
|
|
|
%.pov: make%
|
|
$< > $@
|
|
|
|
test-kopf.ppm: test-kopf.pov kopf.pov
|
|
test-hand.ppm: test-hand.pov hand.pov
|
|
test-torso.ppm: test-torso.pov torso.pov
|
|
test-roboter.ppm: test-roboter.pov roboter.pov kopf.pov torso.pov \
|
|
hand.pov
|