
all: draw_arrays

CFLAGS = -Wall -W -g

draw_arrays: draw_arrays.o
	gcc $^ -o $@ -lglut

clean:
	@rm -f *o *~ draw_arrays

