CC = gcc
LDLIBS = -lGL -lGLU -lglut  
TARGETS= holamundo robot planetario

all: $(TARGETS)

clean:
	rm -f *.o *.~ *~ $(TARGETS)