documentation/images/Makefile
author Florian Pose <fp@igh-essen.com>
Mon, 04 May 2009 12:46:30 +0000
changeset 1438 1d30b96bb04f
parent 1293 a2a03519ee47
child 1517 b99f2f9cb73f
permissions -rw-r--r--
Replaced ecrt_slave_config_dc_cycle_times() and ecrt_slave_config_dc_shift_times() by ecrt_slave_config_dc_sync_signals().
#-----------------------------------------------------------------------------
#
# $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)

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