summaryrefslogtreecommitdiffstats
path: root/progs/es1/xegl/Makefile
diff options
context:
space:
mode:
authorChia-I Wu <[email protected]>2010-01-30 23:07:31 +0800
committerChia-I Wu <[email protected]>2010-01-30 23:16:17 +0800
commit7056a74734d078c501d8318d47a364832aa8aeb6 (patch)
tree85c78d3e0f7c3a750846f369397fe371183c0840 /progs/es1/xegl/Makefile
parent5714e674c75652c195482a8e607a2d624a5e524e (diff)
progs/es1: Add bindtex.
It is ported from progs/egl/xeglbindtex.c. With the OpenGL ES port, the OpenGL version is removed.
Diffstat (limited to 'progs/es1/xegl/Makefile')
-rw-r--r--progs/es1/xegl/Makefile5
1 files changed, 5 insertions, 0 deletions
diff --git a/progs/es1/xegl/Makefile b/progs/es1/xegl/Makefile
index 7f684d68e3b..6869c443065 100644
--- a/progs/es1/xegl/Makefile
+++ b/progs/es1/xegl/Makefile
@@ -20,6 +20,7 @@ ES1_LIBS = \
-L$(TOP)/$(LIB_DIR) -lGLESv1_CM $(LIBDRM_LIB) -lX11
PROGRAMS = \
+ bindtex \
drawtex \
es1_info \
msaa \
@@ -39,6 +40,10 @@ default: $(PROGRAMS)
+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 $@