progs/demos: Remove unnecessary header from shadowtex.c.
authorVinson Lee <vlee@vmware.com>
Sun, 24 Jan 2010 04:56:49 +0000 (20:56 -0800)
committerVinson Lee <vlee@vmware.com>
Sun, 24 Jan 2010 04:56:49 +0000 (20:56 -0800)
progs/demos/Makefile
progs/demos/shadowtex.c

index 65fdbaa..f21d916 100644 (file)
@@ -124,13 +124,6 @@ reflect.o: reflect.c showbuffer.h
        $(APP_CC) -c -I$(INCDIR) $(CFLAGS) reflect.c
 
 
-shadowtex: shadowtex.o showbuffer.o
-       $(APP_CC) $(CFLAGS) $(LDFLAGS) shadowtex.o showbuffer.o $(LIBS) -o $@
-
-shadowtex.o: shadowtex.c showbuffer.h
-       $(APP_CC) -c -I$(INCDIR) $(CFLAGS) shadowtex.c
-
-
 gloss: gloss.o trackball.o readtex.o
        $(APP_CC) $(CFLAGS) $(LDFLAGS) gloss.o trackball.o readtex.o $(LIBS) -o $@
 
index dc5a4bb..59d0070 100644 (file)
@@ -38,7 +38,6 @@
 #include <math.h>
 #include <GL/glew.h>
 #include <GL/glut.h>
-#include "showbuffer.h"
 
 #define DEG_TO_RAD (3.14159 / 180.0)