all:
	ocamlc -o voteur voteur.ml

test:
	./test.py tests/input.txt

clean:
	rm -f *.o *.cm[iox]

cleanall: clean
	rm -f voteur
