gstreamer/docs/manual/images/Makefile.am
Richard Boulton f1d8e760fb Added building of the manual to the build system. Currently in a rudimentary state - will not gracefully give up if ...
Original commit message from CVS:
Added building of the manual to the build system.  Currently in a
rudimentary state - will not gracefully give up if tools not available,
will not uninstall / clean, and may not install / make dist properly.
Documentation does not have dependencies on images, so won't rebuild if
they're altered either.
2000-10-09 00:34:21 +00:00

38 lines
688 B
Makefile

fig_pngs= \
bin-element.png \
connected-elements.png \
filter-element-multi.png \
filter-element.png \
hello-world.png \
mime-world.png \
queue.png \
sink-element.png \
src-element.png \
state-diagram.png \
thread.png
fig_epss= \
bin-element.eps \
connected-elements.eps \
filter-element-multi.eps \
filter-element.eps \
hello-world.eps \
mime-world.eps \
queue.eps \
sink-element.eps \
src-element.eps \
state-diagram.eps \
thread.eps
png_images: $(fig_pngs)
eps_images: $(fig_epss)
%.png : ../fig/%.fig
fig2dev -L png -s 16 $< $@
%.eps : ../fig/%.fig
fig2dev -L eps -s 16 $< $@
all-local: png_images eps_images