diff options
author | Chia-I Wu <olv@lunarg.com> | 2010-04-01 13:47:53 +0800 |
---|---|---|
committer | Chia-I Wu <olv@lunarg.com> | 2010-04-01 22:25:49 +0800 |
commit | dd7276f494f81e57450fac93434ed6d9abfe8e41 (patch) | |
tree | a5d2b53f9247d8416797114264515c374318d099 /progs/egl/opengles1/screen/Makefile | |
parent | 765b30849cd271896901f9e02c920187e82c6494 (diff) |
progs/egl: Port ES1 tri to eglut.
This also removes EGL_MESA_screen_surface version of ES1 tri as eglut
supports the extension.
Diffstat (limited to 'progs/egl/opengles1/screen/Makefile')
-rw-r--r-- | progs/egl/opengles1/screen/Makefile | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/progs/egl/opengles1/screen/Makefile b/progs/egl/opengles1/screen/Makefile index 5b2a59c71c..0c3c136ff2 100644 --- a/progs/egl/opengles1/screen/Makefile +++ b/progs/egl/opengles1/screen/Makefile @@ -13,8 +13,7 @@ ES1_LIB_DEPS = \ WINSYS_OBJS = winsys.o PROGRAMS = \ - gears \ - tri + gears .c.o: $(CC) -c $(ES1_CFLAGS) $(CFLAGS) $< -o $@ @@ -24,9 +23,6 @@ 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) - clean: -rm -f *.o *~ -rm -f $(PROGRAMS) |