all:
	gcc -O2 -o oid oid.c -lm -lgmp

clean:
	rm -f  *.o
	# TODO: if [ -f ... ] then rm
	rm oid
