
DEBUG = -g
CFLAGS = $(DEBUG)

SOURCES = rdoit.c

rdoit : $(SOURCES)
	cc -o rdoit $(CFLAGS) $(SOURCES)
