summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorKim Kibum <kb0929.kim@samsung.com>2012-04-29 17:05:54 +0900
committerKim Kibum <kb0929.kim@samsung.com>2012-04-29 17:05:54 +0900
commitaf0ee32ff16f50fd25229151af7b4a9a6753ebe5 (patch)
tree23879e4123b40df9f773d4775dd64eefd914f4fe /Makefile
parent90dff65a3ccb36853763486671163ca81274b677 (diff)
downloadsimulator-opengl-af0ee32ff16f50fd25229151af7b4a9a6753ebe5.tar.gz
simulator-opengl-af0ee32ff16f50fd25229151af7b4a9a6753ebe5.tar.bz2
simulator-opengl-af0ee32ff16f50fd25229151af7b4a9a6753ebe5.zip
upload tizen1.0 source
Diffstat (limited to 'Makefile')
-rwxr-xr-xMakefile37
1 files changed, 37 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100755
index 0000000..73f16d2
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,37 @@
+#!/bin/make
+
+default:
+ (cd egl_1_4; make)
+ (cd es_1_1; make)
+ (cd es_2_0; make)
+ (cd libGL; make install)
+
+all: default
+
+install:
+ (cd egl_1_4; make -f makefile-dynamic install)
+ (cd es_1_1; make -f makefile-static install)
+ (cd es_1_1; make -f makefile-dynamic install)
+ (cd es_2_0; make -f makefile-static install)
+ (cd es_2_0; make -f makefile-dynamic install)
+ (cd libGL; make install)
+
+clean:
+ (cd egl_1_4; make clean)
+ (cd es_1_1; make -f makefile-static clean)
+ (cd es_1_1; make -f makefile-dynamic clean)
+ (cd es_2_0; make -f makefile-static clean)
+ (cd es_2_0; make -f makefile-dynamic clean)
+ (cd libGL; make clean)
+
+clobber:
+ (cd egl_1_4; make clobber)
+ (cd es_1_1; make -f makefile-static clobber)
+ (cd es_1_1; make -f makefile-dynamic clobber)
+ (cd es_2_0; make -f makefile-static clobber)
+ (cd es_2_0; make -f makefile-dynamic clobber)
+
+wc:
+ (cd egl_1_4; make wc)
+ (cd es_1_1; make -f makefile-dynamic wc)
+ (cd es_2_0; make -f makefile-dynamic wc)