summaryrefslogtreecommitdiff
path: root/progs/egl/opengles1/screen/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'progs/egl/opengles1/screen/Makefile')
-rw-r--r--progs/egl/opengles1/screen/Makefile6
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)