summaryrefslogtreecommitdiff
path: root/progs/egl/opengles2/Makefile
diff options
context:
space:
mode:
authorKristian Høgsberg <krh@bitplanet.net>2010-05-03 11:29:11 -0400
committerKristian Høgsberg <krh@bitplanet.net>2010-05-03 21:21:58 -0400
commit642839824e911a23fb863cd1983f2f61481530c9 (patch)
tree5309f409826e636878e6aae53a778d6f3088c975 /progs/egl/opengles2/Makefile
parente2ea69afef2eeeb31b73772c3bf8ef696dadbc17 (diff)
progs/egl/opengles2: Add es2gears demo
Because every subdirectory under progs has to have a version of gears.
Diffstat (limited to 'progs/egl/opengles2/Makefile')
-rw-r--r--progs/egl/opengles2/Makefile12
1 files changed, 8 insertions, 4 deletions
diff --git a/progs/egl/opengles2/Makefile b/progs/egl/opengles2/Makefile
index 1ee2af2412..89feb34acc 100644
--- a/progs/egl/opengles2/Makefile
+++ b/progs/egl/opengles2/Makefile
@@ -6,7 +6,9 @@ include $(TOP)/configs/current
INCLUDE_DIRS = \
-I$(TOP)/include \
- $(X11_CFLAGS)
+ -I$(TOP)/progs/egl/eglut \
+ $(X11_CFLAGS) \
+
HEADERS = $(TOP)/include/GLES/egl.h
@@ -18,11 +20,12 @@ ES2_LIB_DEPS = \
ES2_LIBS = \
-L$(TOP)/$(LIB_DIR) -lEGL \
- -L$(TOP)/$(LIB_DIR) -lGLESv2 $(LIBDRM_LIB) $(X11_LIBS)
+ -L$(TOP)/$(LIB_DIR) -lGLESv2 $(LIBDRM_LIB) $(X11_LIBS) \
PROGRAMS = \
es2_info \
- tri
+ tri \
+ es2gears
.c.o:
@@ -43,7 +46,8 @@ es2_info: es2_info.o $(ES2_LIB_DEPS)
tri: tri.o $(ES2_LIB_DEPS)
$(CC) $(CFLAGS) tri.o $(ES2_LIBS) -o $@
-
+es2gears: es2gears.o $(ES2_LIB_DEPS)
+ $(CC) $(CFLAGS) es2gears.o ../eglut/libeglut-x11.a $(ES2_LIBS) -lm -o $@
clean:
rm -f *.o *~