mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2024-11-25 03:04:29 +08:00
24 lines
333 B
Makefile
24 lines
333 B
Makefile
# progs/Makefile
|
|
|
|
TOP = ..
|
|
|
|
include $(TOP)/configs/current
|
|
|
|
SUBDIRS = $(PROGRAM_DIRS)
|
|
|
|
|
|
default: $(TOP)/configs/current
|
|
@for dir in $(SUBDIRS) ; do \
|
|
if [ -d $$dir ] ; then \
|
|
(cd $$dir ; make) ; \
|
|
fi \
|
|
done
|
|
|
|
|
|
clean:
|
|
@for dir in $(SUBDIRS) tests ; do \
|
|
if [ -d $$dir ] ; then \
|
|
(cd $$dir ; make clean) ; \
|
|
fi \
|
|
done
|