summaryrefslogtreecommitdiff
path: root/progs/es2/xegl/Makefile
diff options
context:
space:
mode:
authorChia-I Wu <olv@lunarg.com>2010-04-01 13:43:33 +0800
committerChia-I Wu <olv@lunarg.com>2010-04-01 22:25:48 +0800
commit7f231cab2b7c13ba70d6aa694f74b6d6eee6470f (patch)
tree49bbe7b55bc1f809acd6525afa834bda0c074fa3 /progs/es2/xegl/Makefile
parentc727ef01083c873abfaf3c79b28d7cbcd6361bf3 (diff)
progs/es: Move OpenGL ES demos to subdirectories of progs/egl.
Move progs/es1/xegl -> progs/egl/opengles1, progs/es1/screen -> progs/egl/opengles1/screen, progs/es2/xegl -> progs/egl/opengles2.
Diffstat (limited to 'progs/es2/xegl/Makefile')
-rw-r--r--progs/es2/xegl/Makefile51
1 files changed, 0 insertions, 51 deletions
diff --git a/progs/es2/xegl/Makefile b/progs/es2/xegl/Makefile
deleted file mode 100644
index 5bb167c1c6..0000000000
--- a/progs/es2/xegl/Makefile
+++ /dev/null
@@ -1,51 +0,0 @@
-# progs/es2/xegl/Makefile
-
-TOP = ../../..
-include $(TOP)/configs/current
-
-
-INCLUDE_DIRS = \
- -I$(TOP)/include \
-
-HEADERS = $(TOP)/include/GLES/egl.h
-
-
-ES2_LIB_DEPS = \
- $(TOP)/$(LIB_DIR)/libEGL.so \
- $(TOP)/$(LIB_DIR)/libGLESv2.so
-
-
-ES2_LIBS = \
- -L$(TOP)/$(LIB_DIR) -lEGL \
- -L$(TOP)/$(LIB_DIR) -lGLESv2 $(LIBDRM_LIB) -lX11
-
-PROGRAMS = \
- es2_info \
- tri
-
-
-.c.o:
- $(CC) -c $(INCLUDE_DIRS) $(CFLAGS) $< -o $@
-
-
-
-default: $(PROGRAMS)
-
-
-
-es2_info.c: ../../es1/xegl/es1_info.c
- cp -f $^ $@
-
-es2_info: es2_info.o $(ES2_LIB_DEPS)
- $(CC) $(CFLAGS) es2_info.o $(ES2_LIBS) -o $@
-
-tri: tri.o $(ES2_LIB_DEPS)
- $(CC) $(CFLAGS) tri.o $(ES2_LIBS) -o $@
-
-
-
-clean:
- rm -f *.o *~
- rm -f $(PROGRAMS)
- rm -f es2_info.c
-