diff options
author | Chia-I Wu <olvaffe@gmail.com> | 2009-11-09 13:25:49 +0800 |
---|---|---|
committer | Brian Paul <brianp@vmware.com> | 2009-11-10 11:24:53 -0700 |
commit | b30876658b27284ff0271ff821769179cbed2d97 (patch) | |
tree | bba43d200210af7604adf9eb8e6fa83b876ae7bd /progs/es1/screen/Makefile | |
parent | 381cbc71923288ed189504b5b784c551f88a1010 (diff) |
progs/es1: Port eglgears to OpenGL ES 1.1.
This demo requires EGL_MESA_screen_surface to run.
Signed-off-by: Chia-I Wu <olvaffe@gmail.com>
Diffstat (limited to 'progs/es1/screen/Makefile')
-rw-r--r-- | progs/es1/screen/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/progs/es1/screen/Makefile b/progs/es1/screen/Makefile index 27be054d89..4ba2f9a7dc 100644 --- a/progs/es1/screen/Makefile +++ b/progs/es1/screen/Makefile @@ -13,6 +13,7 @@ ES1_LIB_DEPS = \ WINSYS_OBJS = winsys.o PROGRAMS = \ + gears \ tri .c.o: @@ -20,6 +21,9 @@ PROGRAMS = \ default: $(PROGRAMS) +gears: gears.o $(WINSYS_OBJS) $(ES1_LIB_DEPS) + $(CC) $(CFLAGS) -o $@ $@.o $(WINSYS_OBJS) $(ES1_LIBS) + tri: tri.o $(WINSYS_OBJS) $(ES1_LIB_DEPS) $(CC) $(CFLAGS) -o $@ $@.o $(WINSYS_OBJS) $(ES1_LIBS) |