mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-02-26 22:10:37 +01:00
12 lines
229 B
Makefile
12 lines
229 B
Makefile
# src/gallium/Makefile
|
|
TOP = ../..
|
|
include $(TOP)/configs/current
|
|
|
|
SUBDIRS = $(GALLIUM_DIRS)
|
|
|
|
default install clean:
|
|
@for dir in $(SUBDIRS) ; do \
|
|
if [ -d $$dir ] ; then \
|
|
(cd $$dir && $(MAKE) $@) || exit 1; \
|
|
fi \
|
|
done
|