mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-11 10:10:14 +01:00
30 lines
371 B
Makefile
30 lines
371 B
Makefile
# src/Makefile
|
|
|
|
TOP = ..
|
|
|
|
include $(TOP)/configs/current
|
|
|
|
SUBDIRS = $(SRC_DIRS)
|
|
|
|
|
|
default: $(LIB_DIR) subdirs
|
|
|
|
|
|
subdirs:
|
|
@for dir in $(SUBDIRS) ; do \
|
|
if [ -d $$dir ] ; then \
|
|
(cd $$dir ; make) || exit 1 ; \
|
|
fi \
|
|
done
|
|
|
|
|
|
$(LIB_DIR):
|
|
-mkdir $(LIB_DIR)
|
|
|
|
|
|
clean:
|
|
@for dir in $(SUBDIRS) ; do \
|
|
if [ -d $$dir ] ; then \
|
|
(cd $$dir ; make clean) ; \
|
|
fi \
|
|
done
|