#
#  ICPC makefile
#
#  For each test case and each C/C++/Java/Python solution candidate,
#  produces distinct testcase.candidate.out, .diff, and .time files,
#
#  Ideally, all the .diff files should be empty. 
#
#  This makefile relies on ../make.problem
#
DIR=${PWD}
PROBLEM=$(notdir ${DIR})
CPPVersions=around_sjz
JavaVersions=
Python2Versions=
PythonVersions=around
Tests=$(wildcard judgeData/*.in)
Gold=python3 around.py
#
include ../make.problem

judgeData/%.${EXPECTED}: judgeData/%.in
	$(Gold) < judgeData/$*.in > judgeData/$*.${EXPECTED}

cleaner: clean
	-/bin/rm  -f judgeData/*.ans judgeData/*.out judgeData/*.diff judgeData/*.time


