#
#  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})
CVersions=
CPPVersions=
#CPPVersions=ghostbusters_mg ghostbusters_mg_quad gb2_jingbo
JavaVersions=Ghostbusters_sjz
Python2Versions=
PythonVersions=
Tests=$(wildcard judgeData/*.in)
#Gold=./Illumination.exe
#
include ../make.problem


cleaner: clean
	-/bin/rm  -f judgeData/*.out judgeData/*.diff judgeData/*.time

judgeData/%.ans: judgeData/%.in
	java Ghostbusters_sjz < judgeData/$*.in > judgeData/$*.ans
