documentation/images/Makefile
author Florian Pose <fp@igh-essen.com>
Wed, 22 Oct 2008 10:31:34 +0000
changeset 1293 a2a03519ee47
parent 1203 acb649738601
child 1517 b99f2f9cb73f
permissions -rw-r--r--
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)

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