mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-21 11:08:24 +02:00
35 lines
397 B
Makefile
35 lines
397 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 \
|
||
|
|
pushd $$dir ; \
|
||
|
|
make ; \
|
||
|
|
popd ; \
|
||
|
|
fi \
|
||
|
|
done
|
||
|
|
|
||
|
|
|
||
|
|
$(LIB_DIR):
|
||
|
|
-mkdir $(LIB_DIR)
|
||
|
|
|
||
|
|
|
||
|
|
clean:
|
||
|
|
@for dir in $(SUBDIRS) ; do \
|
||
|
|
if [ -d $$dir ] ; then \
|
||
|
|
pushd $$dir ; \
|
||
|
|
make clean ; \
|
||
|
|
popd ; \
|
||
|
|
fi \
|
||
|
|
done
|