TARGETS = $(filter-out loadppm readtex tkmap,$(patsubst %.c,%,$(wildcard *.c)))

LDLIBS = -lglut

all : $(TARGETS)

sphere: sphere.o readtex.o

clean:
	$(RM) $(TARGETS)
