mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-28 05:38:11 +02:00
25 lines
358 B
Makefile
25 lines
358 B
Makefile
# src/egl/drivers/Makefile
|
|
|
|
TOP = ../../..
|
|
include $(TOP)/configs/current
|
|
|
|
SUBDIRS = $(EGL_DRIVERS_DIRS)
|
|
|
|
|
|
default: subdirs
|
|
|
|
|
|
subdirs:
|
|
@for dir in $(SUBDIRS) ; do \
|
|
if [ -d $$dir ] ; then \
|
|
(cd $$dir ; $(MAKE)) || exit 1 ; \
|
|
fi \
|
|
done
|
|
|
|
|
|
clean:
|
|
@for dir in $(SUBDIRS) ; do \
|
|
if [ -d $$dir ] ; then \
|
|
(cd $$dir ; $(MAKE) clean) ; \
|
|
fi \
|
|
done
|