mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-04 03:18:08 +02:00
variable (defaults to "make") and use that. Use the MKDEP and MKDEP_OPTIONS more. Our shell isn't bash, so change the instances of ">& /dev/null" to a more compatible "> /dev/null 2>&1".
20 lines
265 B
Makefile
20 lines
265 B
Makefile
# src/glu/Makefile
|
|
|
|
TOP = ../..
|
|
|
|
include $(TOP)/configs/current
|
|
|
|
|
|
SUBDIRS = $(GLU_DIRS)
|
|
|
|
|
|
default: $(TOP)/configs/current
|
|
@for dir in $(SUBDIRS) ; do \
|
|
(cd $$dir ; $(MAKE)) ; \
|
|
done
|
|
|
|
|
|
clean:
|
|
@for dir in $(SUBDIRS) ; do \
|
|
(cd $$dir ; $(MAKE) clean) ; \
|
|
done
|