
all: flat_cube

CFLAGS = -Wall -W -g

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

clean:
	@rm -f *o *~ flat_cube

