23 lines
328 B
Makefile
23 lines
328 B
Makefile
# what's where?
|
|
include GNUmakevars
|
|
|
|
|
|
all: \
|
|
test-laires_auge.ppm \
|
|
margors_labor.ppm \
|
|
|
|
|
|
|
|
%.ppm: %.pov
|
|
$(POVRAY) +L$(POVINC) +V -I$< +D +FP
|
|
|
|
%.pov: make%
|
|
$< > $@
|
|
|
|
margors_labor.ppm: margors_labor.pov laires_auge.pov
|
|
|
|
test-laires_auge.ppm: test-laires_auge.pov laires_auge.pov
|
|
|
|
%.gif: %.ppm
|
|
ppmquant 256 $< | ppmtogif > $@
|