summaryrefslogtreecommitdiff
path: root/progs/egl/opengles1/Makefile
diff options
context:
space:
mode:
authorChia-I Wu <olv@lunarg.com>2010-04-06 13:17:56 +0800
committerChia-I Wu <olv@lunarg.com>2010-04-06 13:48:59 +0800
commitf51f62e8ed5227f410efa46337a95af25d7eb616 (patch)
treedfe5ea9ca093fb645e80adf332ea198d3db7c6fc /progs/egl/opengles1/Makefile
parent7d2db19fe581ede34dd1f396f1e0bd46ea5c3776 (diff)
progs/egl: Port drawtex and torus to eglut.
This brings the demos also to KMS and removes about 400 duplicated lines of code.
Diffstat (limited to 'progs/egl/opengles1/Makefile')
-rw-r--r--progs/egl/opengles1/Makefile8
1 files changed, 2 insertions, 6 deletions
diff --git a/progs/egl/opengles1/Makefile b/progs/egl/opengles1/Makefile
index dac911e39f..554cff9e6b 100644
--- a/progs/egl/opengles1/Makefile
+++ b/progs/egl/opengles1/Makefile
@@ -22,7 +22,9 @@ ES1_LIBS = \
EGLUT_DIR = $(TOP)/progs/egl/eglut
EGLUT_DEMOS = \
+ drawtex \
gears \
+ torus \
tri
EGLUT_X11_DEMOS := $(addsuffix _x11,$(EGLUT_DEMOS))
@@ -30,13 +32,11 @@ EGLUT_SCREEN_DEMOS := $(addsuffix _screen,$(EGLUT_DEMOS))
PROGRAMS = \
bindtex \
- drawtex \
es1_info \
msaa \
pbuffer \
render_tex \
texture_from_pixmap \
- torus \
two_win
@@ -53,10 +53,6 @@ bindtex: bindtex.o $(ES1_LIB_DEPS)
$(CC) $(CFLAGS) bindtex.o $(ES1_LIBS) -o $@
-drawtex: drawtex.o $(ES1_LIB_DEPS)
- $(CC) $(CFLAGS) drawtex.o $(ES1_LIBS) -o $@
-
-
es1_info: es1_info.o $(ES1_LIB_DEPS)
$(CC) $(CFLAGS) es1_info.o $(ES1_LIBS) -o $@