all: main
main: rnd_print.o
	gcc -o rnd_print rnd_print.o
clean:
	rm -rf main *.o
