mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-31 05:30:11 +01:00
15 lines
224 B
Makefile
15 lines
224 B
Makefile
# src/glsl/Makefile
|
|
|
|
TOP = ../..
|
|
|
|
include $(TOP)/configs/current
|
|
|
|
SUBDIRS = pp cl apps
|
|
|
|
default install clean:
|
|
@for dir in $(SUBDIRS) ; do \
|
|
if [ -d $$dir ] ; then \
|
|
(cd $$dir && $(MAKE) $@) || exit 1; \
|
|
fi \
|
|
done
|
|
|