documentation/images/Makefile
author Florian Pose <fp@igh-essen.com>
Tue, 20 Jan 2009 10:49:59 +0000
branch1.4-foe
changeset 1712 45ff77031255
parent 1661 3861554f3c9d
permissions -rw-r--r--
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)

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