documentation/images/Makefile
author Florian Pose <fp@igh-essen.com>
Wed, 05 Nov 2008 10:50:50 +0000
branchstable-1.4
changeset 1661 3861554f3c9d
parent 1630 ffa89570d84f
permissions -rw-r--r--
merge -c1543 trunk: Prcess data; slave configuration + attachment; typos.
#-----------------------------------------------------------------------------
#
# $Id$
#
#-----------------------------------------------------------------------------

FIGS := \
	app-config.fig \
	architecture.fig \
	attach.fig \
	fmmus.fig \
	fsm-coedown.fig \
	fsm-eoe.fig \
	interrupt.fig \
	master-locks.fig \
	masters.fig \
	phases.fig \
	statetrans.fig

PDFS = $(FIGS:.fig=.pdf)

all: $(PDFS)

%.pdf: %.fig
	fig2dev -L pdf -z A4 -p xxx -c $< $@	

clean:
	@rm -rv $(PDFS)

#-----------------------------------------------------------------------------