mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-22 10:58:08 +02:00
21 lines
281 B
Makefile
21 lines
281 B
Makefile
TOP = ../..
|
|
include $(TOP)/configs/current
|
|
|
|
|
|
SUBDIRS = auxiliary drivers
|
|
|
|
|
|
default: subdirs
|
|
|
|
|
|
subdirs:
|
|
@for dir in $(SUBDIRS) ; do \
|
|
if [ -d $$dir ] ; then \
|
|
(cd $$dir && $(MAKE)) || exit 1 ; \
|
|
fi \
|
|
done
|
|
|
|
|
|
clean:
|
|
rm -f `find . -name \*.[oa]`
|
|
rm -f `find . -name depend`
|