# Makefile for rand.o

all:
	gcc -O3 -fomit-frame-pointer -o rand.o -c rand.c

clean:
	rm *.o
