Merge branch 'master' of git+ssh://git.freedesktop.org/git/mesa/mesa into gallium-0.2
[mesa.git] / src / egl / drivers / Makefile
1 # src/egl/drivers/Makefile
2
3 TOP = ../../..
4 include $(TOP)/configs/current
5
6 SUBDIRS = $(EGL_DRIVERS_DIRS)
7
8
9 default: subdirs
10
11
12 subdirs:
13 @for dir in $(SUBDIRS) ; do \
14 if [ -d $$dir ] ; then \
15 (cd $$dir ; $(MAKE)) || exit 1 ; \
16 fi \
17 done
18
19
20 clean:
21 @for dir in $(SUBDIRS) ; do \
22 if [ -d $$dir ] ; then \
23 (cd $$dir ; $(MAKE) clean) ; \
24 fi \
25 done