documentation/images/Makefile
author Florian Pose <fp@igh-essen.com>
Fri, 17 Oct 2008 13:30:55 +0000
changeset 1277 1189e040fe12
parent 1203 acb649738601
child 1293 a2a03519ee47
permissions -rw-r--r--
merge -c1521 branches/stable-1.4: Fixed race concerning ec_slave_config_state->operational.
#-----------------------------------------------------------------------------
#
# $Id$
#
#-----------------------------------------------------------------------------

FIGS := \
	app-config.fig \
	architecture.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)

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