all:	translate glue
	echo "KONEC!"
translate:
	cat original | java -classpath google-api-translate-java-0.92.jar Main > translations_cyrillic
glue:
	cat translations_cyrillic| recode-sr-latin > translations
	cp translations google_slsr_tst
	cp original google_slsr_src
	cp reference google_slsr_ref
	./interleave original translations reference > google_slsr_all

