diff options
Diffstat (limited to 'progs/glsl/Makefile')
-rw-r--r-- | progs/glsl/Makefile | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/progs/glsl/Makefile b/progs/glsl/Makefile index 9f5a2b7df5b..ce82468168d 100644 --- a/progs/glsl/Makefile +++ b/progs/glsl/Makefile @@ -27,7 +27,7 @@ PROGS = \ toyball \ twoside \ trirast \ - texdemo1 + vert-tex ##### RULES ##### @@ -189,7 +189,19 @@ trirast.o: trirast.c extfuncs.h shaderutil.h $(APP_CC) -c -I$(INCDIR) $(CFLAGS) trirast.c trirast: trirast.o shaderutil.o +<<<<<<< HEAD:progs/glsl/Makefile $(APP_CC) -I$(INCDIR) $(CFLAGS) $(LDFLAGS) trirast.o shaderutil.o $(LIBS) -o $@ +======= + $(CC) -I$(INCDIR) $(CFLAGS) $(LDFLAGS) trirast.o shaderutil.o $(LIBS) -o $@ + + +vert-tex.o: vert-tex.c extfuncs.h shaderutil.h + $(CC) -c -I$(INCDIR) $(CFLAGS) vert-tex.c + +vert-tex: vert-tex.o shaderutil.o + $(CC) -I$(INCDIR) $(CFLAGS) $(LDFLAGS) vert-tex.o shaderutil.o $(LIBS) -o $@ + +>>>>>>> origin/master:progs/glsl/Makefile |