summaryrefslogtreecommitdiff
path: root/progs/egl/opengles1/screen/Makefile
diff options
context:
space:
mode:
authorChia-I Wu <olv@lunarg.com>2010-04-01 14:03:30 +0800
committerChia-I Wu <olv@lunarg.com>2010-04-01 22:25:49 +0800
commit7b48d88407655dc135d7a3c2c47d9df3e8dff01e (patch)
tree9c006f6b4ddb2f084528faca04d516dbfc2215ec /progs/egl/opengles1/screen/Makefile
parentdd7276f494f81e57450fac93434ed6d9abfe8e41 (diff)
progs/egl: Port ES1 gears to eglut.
As gears in the last demo under "screen" subdirectory, this also removes the directory.
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)