diff options
author | Chia-I Wu <[email protected]> | 2009-07-16 08:29:19 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2009-07-16 08:29:57 -0600 |
commit | 721f80b82ac1f1535f55367d921a2a292eb4898f (patch) | |
tree | 03c9ee03c50eb587390089dc08f8a7997a1b7953 /progs/egl/Makefile | |
parent | caf5d52d48aaed63f916ecd050c959eca401a75a (diff) |
egl: Add xeglthreads
Signed-off-by: Chia-I Wu <[email protected]>
Diffstat (limited to 'progs/egl/Makefile')
-rw-r--r-- | progs/egl/Makefile | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/progs/egl/Makefile b/progs/egl/Makefile index e1fdb1ce63d..d3c32d46f78 100644 --- a/progs/egl/Makefile +++ b/progs/egl/Makefile @@ -18,6 +18,7 @@ PROGRAMS = \ eglscreen \ peglgears \ xeglgears \ + xeglthreads \ xegl_tri @@ -90,6 +91,13 @@ xeglgears.o: xeglgears.c $(HEADERS) $(CC) -c $(CFLAGS) -I$(TOP)/include xeglgears.c +xeglthreads: xeglthreads.o $(TOP)/$(LIB_DIR)/libEGL.so + $(CC) $(CFLAGS) xeglthreads.o -L$(TOP)/$(LIB_DIR) -lEGL -lGL $(LIBDRM_LIB) $(APP_LIB_DEPS) -o $@ + +xeglthreads.o: xeglthreads.c $(HEADERS) + $(CC) -c $(CFLAGS) -I$(TOP)/include xeglthreads.c + + xegl_tri: xegl_tri.o $(TOP)/$(LIB_DIR)/libEGL.so $(CC) $(CFLAGS) xegl_tri.o -L$(TOP)/$(LIB_DIR) -lEGL -lGL $(LIBDRM_LIB) $(APP_LIB_DEPS) -o $@ |