Initial commit
[profile/ivi/simulator-opengl.git] / Makefile
1 #!/bin/make
2
3 default:
4         (cd egl_1_4; make)
5         (cd es_1_1; make)
6         (cd es_2_0; make)
7         (cd libGL; make install)
8
9 all: default
10
11 install:
12         (cd egl_1_4; make -f makefile-dynamic install)
13         (cd es_1_1; make -f makefile-static install)
14         (cd es_1_1; make -f makefile-dynamic install)
15         (cd es_2_0; make -f makefile-static install)
16         (cd es_2_0; make -f makefile-dynamic install)
17         (cd libGL; make install)
18
19 clean:
20         (cd egl_1_4; make clean)
21         (cd es_1_1; make -f makefile-static clean)
22         (cd es_1_1; make -f makefile-dynamic clean)
23         (cd es_2_0; make -f makefile-static clean)
24         (cd es_2_0; make -f makefile-dynamic clean)
25         (cd libGL; make clean)
26
27 clobber:
28         (cd egl_1_4; make clobber)
29         (cd es_1_1; make -f makefile-static clobber)
30         (cd es_1_1; make -f makefile-dynamic clobber)
31         (cd es_2_0; make -f makefile-static clobber)
32         (cd es_2_0; make -f makefile-dynamic clobber)
33
34 wc:
35         (cd egl_1_4; make wc)
36         (cd es_1_1; make -f makefile-dynamic wc)
37         (cd es_2_0; make -f makefile-dynamic wc)