mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-26 15:00:10 +01:00
34 lines
439 B
Makefile
34 lines
439 B
Makefile
# src/Makefile
|
|
|
|
TOP = ..
|
|
|
|
include $(TOP)/configs/current
|
|
|
|
SUBDIRS = $(SRC_DIRS)
|
|
|
|
|
|
default: message $(LIB_DIR) subdirs
|
|
|
|
|
|
message:
|
|
@echo "Making sources for" $(CONFIG_NAME)
|
|
|
|
|
|
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
|