mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-03-11 15:40:31 +01:00
36 lines
556 B
Makefile
36 lines
556 B
Makefile
# src/egl/Makefile
|
|
|
|
TOP = ../..
|
|
include $(TOP)/configs/current
|
|
|
|
SUBDIRS =
|
|
|
|
ifneq ($(findstring wayland, $(EGL_PLATFORMS)),)
|
|
SUBDIRS += wayland
|
|
endif
|
|
|
|
SUBDIRS += drivers main
|
|
|
|
default: subdirs
|
|
|
|
|
|
subdirs:
|
|
@for dir in $(SUBDIRS) ; do \
|
|
if [ -d $$dir ] ; then \
|
|
(cd $$dir && $(MAKE)) || exit 1 ; \
|
|
fi \
|
|
done
|
|
|
|
install:
|
|
@for dir in $(SUBDIRS) ; do \
|
|
if [ -d $$dir ] ; then \
|
|
(cd $$dir && $(MAKE) install) || exit 1 ; \
|
|
fi \
|
|
done
|
|
|
|
clean:
|
|
-@for dir in $(SUBDIRS) ; do \
|
|
if [ -d $$dir ] ; then \
|
|
(cd $$dir && $(MAKE) clean) ; \
|
|
fi \
|
|
done
|