mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-13 20:40:14 +01:00
Replaced $(LIB_DIR) with $(TOP)/$(LIB_DIR), use LIB_DIR in install targets. Patch by Hanno Böck.
40 lines
586 B
Makefile
40 lines
586 B
Makefile
# src/Makefile
|
|
|
|
TOP = ..
|
|
|
|
include $(TOP)/configs/current
|
|
|
|
SUBDIRS = $(SRC_DIRS)
|
|
|
|
|
|
default: message $(TOP)/$(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
|
|
|
|
install:
|
|
@for dir in $(SUBDIRS) ; do \
|
|
if [ -d $$dir ] ; then \
|
|
(cd $$dir ; $(MAKE) install) || exit 1 ; \
|
|
fi \
|
|
done
|
|
|
|
$(TOP)/$(LIB_DIR):
|
|
-mkdir $(TOP)/$(LIB_DIR)
|
|
|
|
|
|
clean:
|
|
@for dir in $(SUBDIRS) ; do \
|
|
if [ -d $$dir ] ; then \
|
|
(cd $$dir ; $(MAKE) clean) ; \
|
|
fi \
|
|
done
|