#---*- Makefile -*-------------------------------------------------------
#$Author: saulius $
#$Date: 2019-10-16 10:31:34 +0300 (Wed, 16 Oct 2019) $
#$Revision: 226 $
#$URL: svn+ssh://saulius-grazulis.lt/home/saulius/svn-repositories/makefiles/xetex-and-latex/Makelocal-xetex-and-latex $
#------------------------------------------------------------------------
#*
# Translate the '' Dia file into various languages:
#**

DIA_FILE = drawings/machines/bubble-sort-machine.dia
DIA_BASE = ${DIA_FILE:%.dia=%}

${DIA_BASE}_lt.dia: ${DIA_FILE} scripts/translate-en-lt-bsort.sed
	./scripts/dia-sed $(word 2,$^) $< $@

${DIA_BASE}_ru.dia: ${DIA_FILE} scripts/translate-en-ru-bsort.sed
	./scripts/dia-sed $(word 2,$^) $< $@

.PHONY: distclean dia-distclean

distclean: dia-distclean

dia-distclean:
	rm -f ${DIA_BASE}_lt.dia
	rm -f ${DIA_BASE}_ru.dia
