blob: 73f16d2b3c5d6e73b042f2137907d803072bd6dd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
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)
|