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/Makefile28
1 files changed, 0 insertions, 28 deletions
diff --git a/progs/egl/opengles1/screen/Makefile b/progs/egl/opengles1/screen/Makefile
deleted file mode 100644
index 0c3c136ff2..0000000000
--- a/progs/egl/opengles1/screen/Makefile
+++ /dev/null
@@ -1,28 +0,0 @@
-# progs/egl/opengles1/screen/Makefile
-
-TOP = ../../../..
-include $(TOP)/configs/current
-
-ES1_CFLAGS = -I$(TOP)/include
-ES1_LIBS = -L$(TOP)/$(LIB_DIR) -lEGL -lGLESv1_CM
-
-ES1_LIB_DEPS = \
- $(TOP)/$(LIB_DIR)/libEGL.so \
- $(TOP)/$(LIB_DIR)/libGLESv1_CM.so
-
-WINSYS_OBJS = winsys.o
-
-PROGRAMS = \
- gears
-
-.c.o:
- $(CC) -c $(ES1_CFLAGS) $(CFLAGS) $< -o $@
-
-default: $(PROGRAMS)
-
-gears: gears.o $(WINSYS_OBJS) $(ES1_LIB_DEPS)
- $(CC) $(CFLAGS) -o $@ $@.o $(WINSYS_OBJS) $(ES1_LIBS)
-
-clean:
- -rm -f *.o *~
- -rm -f $(PROGRAMS)