diff options
Diffstat (limited to 'progs/egl/opengles1/Makefile')
-rw-r--r-- | progs/egl/opengles1/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/progs/egl/opengles1/Makefile b/progs/egl/opengles1/Makefile index c575a9703ed..dac911e39f0 100644 --- a/progs/egl/opengles1/Makefile +++ b/progs/egl/opengles1/Makefile @@ -35,6 +35,7 @@ PROGRAMS = \ msaa \ pbuffer \ render_tex \ + texture_from_pixmap \ torus \ two_win @@ -72,6 +73,9 @@ render_tex: render_tex.o $(ES1_LIB_DEPS) $(CC) $(CFLAGS) render_tex.o $(ES1_LIBS) -o $@ +texture_from_pixmap: texture_from_pixmap.o $(ES1_LIB_DEPS) + $(CC) $(CFLAGS) texture_from_pixmap.o $(ES1_LIBS) -o $@ + torus: torus.o $(ES1_LIB_DEPS) $(CC) $(CFLAGS) torus.o $(ES1_LIBS) -o $@ |