all:	translate glue
	echo "KONEC!"
translate:
	cat original | java -classpath google-api-translate-java-0.92.jar Main > translations
	cp translations google_slen_tst
	cp original google_slen_src
	cp reference google_slen_ref
glue:
	./interleave original translations reference > google_slen_all

