.PHONY: all
all:
    for i in eval-*; do (cd $i; ./evaluation.py; mv ranks.html ranks-geometric-mean.html; mv top_N.html top_N-geometric-mean.html; ./evaluation.py --arithmetic-mean-cost; mv ranks.html ranks-arithmetic-mean.html; mv top_N.html top_N-arithmetic-mean.html; cd -) & done
