
all: accum

CFLAGS = -Wall -W -g

accum: main.o
	gcc $^ -o $@ -lglut

clean:
	@rm -f *o *~ accum

