# Slides for the talk
#
SLIDES = title.fig \
	repository-workspace.fig checkout-edit-commit.fig \
	many-repositories.fig \
	checkout.fig commit.fig add-remove.fig \
	revisions-releases-tags.fig \
	tag.fig \
	collaboration.fig update.fig \
	commit-revisited.fig update-revisited.fig \
	conflict.fig conflict-resolution.fig \
	why-branch.fig branching.fig \
	checkout-revisited.fig \
	misc-commands.fig

PS = $(SLIDES:.fig=.ps)

talk: $(PS)

%.ps: %.fig
	fig2dev -L ps -P $*.fig > $*.ps

print: $(PS)
	lpr $(PS)

print-colour: $(PS)
	lpr -Pchroma $(PS)

clean: 
	rm -f $(PS)

