#!/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)