documentation/images/Makefile
author Florian Pose <fp@igh-essen.com>
Mon, 26 Jan 2009 14:13:50 +0000
changeset 1339 3483999e1aba
parent 1293 a2a03519ee47
child 1517 b99f2f9cb73f
permissions -rw-r--r--
merge -c1622 branches/1.4-foe: Fixed seg_size parameter when processing an CoE Upload Segment Response.
#-----------------------------------------------------------------------------
#
# $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)

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