diff options
author | Brian Paul <brian.paul@tungstengraphics.com> | 2003-04-17 19:20:54 +0000 |
---|---|---|
committer | Brian Paul <brian.paul@tungstengraphics.com> | 2003-04-17 19:20:54 +0000 |
commit | 24339179a48599510f6b4d24d2abc62c26ddda10 (patch) | |
tree | 1352ecdf14ac2b7e85d675b2b323d9b498bdb58e /progs/demos/Makefile.X11 | |
parent | da74a60e4cf49a7bb59b878843a014ea2676b766 (diff) |
Demo of using GL_ARB_vertex/fragment_program to do per-pixel lighting.
Diffstat (limited to 'progs/demos/Makefile.X11')
-rw-r--r-- | progs/demos/Makefile.X11 | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/progs/demos/Makefile.X11 b/progs/demos/Makefile.X11 index 5862749b5f..f34cde07e6 100644 --- a/progs/demos/Makefile.X11 +++ b/progs/demos/Makefile.X11 @@ -1,8 +1,8 @@ -# $Id: Makefile.X11,v 1.21 2003/04/07 23:05:51 brianp Exp $ +# $Id: Makefile.X11,v 1.22 2003/04/17 19:20:55 brianp Exp $ # Mesa 3-D graphics library -# Version: 3.5 -# Copyright (C) 1995-2001 Brian Paul +# Version: 5.1 +# Copyright (C) 1995-2003 Brian Paul # Makefile for GLUT-based demo programs for Unix/X11 @@ -18,7 +18,9 @@ OSMESA_LIBS = -L$(LIBDIR) -lglut -lOSMesa -lGLU -lGL $(APP_LIB_DEPS) LIB_DEP = $(LIBDIR)/$(GL_LIB) $(LIBDIR)/$(GLU_LIB) $(LIBDIR)/$(GLUT_LIB) -PROGS = bounce \ +PROGS = \ + arbfplight \ + bounce \ clearspd \ cubemap \ drawpix \ |