# Makefile for rnd - random stuff generator
CFLAGS = -O

rnd:	rnd.c
	cc $(CFLAGS) -o rnd rnd.c
