i965/gen6/GT1: Increase max_vs_entries to 256.
[mesa.git] / src / egl / wayland / Makefile
1 # src/egl/wayland/Makefile
2
3 TOP = ../../..
4 include $(TOP)/configs/current
5
6 SUBDIRS = wayland-drm wayland-egl
7
8 default: subdirs
9
10
11 subdirs:
12 @for dir in $(SUBDIRS) ; do \
13 if [ -d $$dir ] ; then \
14 (cd $$dir && $(MAKE)) || exit 1 ; \
15 fi \
16 done
17
18 install:
19 @for dir in $(SUBDIRS) ; do \
20 if [ -d $$dir ] ; then \
21 (cd $$dir && $(MAKE) install) || exit 1 ; \
22 fi \
23 done
24
25 clean:
26 -@for dir in $(SUBDIRS) ; do \
27 if [ -d $$dir ] ; then \
28 (cd $$dir && $(MAKE) clean) ; \
29 fi \
30 done